diff options
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/codegen.ts | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/compiler/codegen.ts b/src/compiler/codegen.ts index f42968b1a..febb0a514 100644 --- a/src/compiler/codegen.ts +++ b/src/compiler/codegen.ts @@ -9,9 +9,7 @@ import path from 'path'; import { walk } from 'estree-walker'; import babelParser from '@babel/parser'; import _babelGenerator from '@babel/generator'; -import traverse from '@babel/traverse'; -import { ImportDeclaration, ExportNamedDeclaration, VariableDeclarator, Identifier, VariableDeclaration } from '@babel/types'; -import { type } from 'node:os'; +import { ImportDeclaration, ExportNamedDeclaration, VariableDeclarator, Identifier } from '@babel/types'; const babelGenerator: typeof _babelGenerator = // @ts-ignore |