refactor: compile with esmoudle interop

This commit is contained in:
calebboyd
2023-04-02 12:02:35 -05:00
parent 7a8625d92b
commit 5d5513d264
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
import * as parseArgv from 'minimist'
import parseArgv from 'minimist'
import { NexeCompiler, NexeError } from './compiler'
import { isWindows, STDIN_FLAG } from './util'
import { basename, extname, join, isAbsolute, resolve } from 'path'
+1 -1
View File
@@ -1,5 +1,5 @@
import { each } from '../util'
import * as globs from 'globby'
import globs from 'globby'
import { resolve } from 'path'
import { NexeCompiler } from '../compiler'
+1
View File
@@ -3,6 +3,7 @@
"target":"es2015",
"skipLibCheck": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"lib": ["es2018"],
"module": "commonjs",
"outDir": "./lib",