From 573cc3b756ba858d5d395077d46cb44e47be0e0d Mon Sep 17 00:00:00 2001 From: Peter Blazejewicz Date: Sat, 22 Jun 2019 22:17:35 +0200 Subject: [PATCH] Allow to use default ES6 imports --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index c5227a3..0f5d76c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "module": "commonjs", "esModuleInterop": true, + "allowSyntheticDefaultImports": true, "target": "es6", "noImplicitAny": true, "moduleResolution": "node",