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
1 changed files with 4 additions and 3 deletions

View File

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