From 79f883fc31862d1b1b90ba5ad055ee712a7ed4bf Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 24 Nov 2020 19:15:33 +0100 Subject: [PATCH] Updated tsconfig to work with await and node imports ref #1 --- tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 85549a2..f29e259 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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" } } \ No newline at end of file