Updated tsconfig to work with await and node imports

ref #1
This commit is contained in:
Nicolai Ort 2020-11-24 19:15:33 +01:00
parent 0b22da2e4d
commit 79f883fc31

View File

@ -1,10 +1,11 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "es6", "target": "es2017",
"module": "commonjs", "module": "esnext",
"rootDir": "./src", "rootDir": "./src",
"outDir": "./build", "outDir": "./build",
"esModuleInterop": true, "esModuleInterop": true,
"strict": true "strict": true,
"moduleResolution": "node"
} }
} }