From c22bb96242b889595cd14140768a4d8ef8dc8563 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Mon, 21 Dec 2020 14:05:14 +0530 Subject: [PATCH] tsconfig updated to fix injected web3 issue --- libs/remix-debug/tsconfig.lib.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/remix-debug/tsconfig.lib.json b/libs/remix-debug/tsconfig.lib.json index 86fd7c0596..b0cb638211 100644 --- a/libs/remix-debug/tsconfig.lib.json +++ b/libs/remix-debug/tsconfig.lib.json @@ -3,7 +3,8 @@ "compilerOptions": { "module": "commonjs", "outDir": "../../dist/out-tsc", - "allowJs": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, "declaration": true, "rootDir": "./", "types": ["node"]