From 67fc21e83d7e4065db88dd73e8925c1fa6f5c10b Mon Sep 17 00:00:00 2001 From: Kolja Lampe Date: Sat, 8 Jun 2019 15:10:04 +0200 Subject: [PATCH] Fix tsconfig --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 11c38d2..9ad3184 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,10 +3,10 @@ "module": "commonjs", "target": "es6", "outDir": "out", - "rootDir": "src", "strict": true, "lib": ["es6"], - "sourceMap": true + "sourceMap": true, + "esModuleInterop": true }, "include": ["server/src", "client/src"], "exclude": ["node_modules", ".vscode-test"],