From 7986411cfef56d41e86535d00e8e516dbb4b30fd Mon Sep 17 00:00:00 2001 From: Alexandre Nunes Date: Sun, 27 Sep 2020 02:34:59 -0300 Subject: [PATCH] chore: add esModuleInterop flag to tsconfig file --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index c09c300..3db72fa 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "target": "es5", "module": "commonjs", + "esModuleInterop": true, "declaration": true, "strict": true, "rootDir": "src",