From 9d6158a620ddc06670303f2c61a2b7e2a231f28b Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 16 Nov 2020 10:43:22 -0500 Subject: [PATCH] set "allowJs" to false in tsconfig (#1377) - None of the .ts files include any of the .js files - All .js files are either passed to electron-builder or used as config files for other programs. Signed-off-by: Sebastian Malton --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 9c2190d6ba..b2cb7376ef 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,7 +18,7 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true, "skipLibCheck": true, - "allowJs": true, + "allowJs": false, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "traceResolution": false,