From 647ab01c5e927258428bbd6468adc36ce3695a9b Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 13 Nov 2020 16:17:13 -0500 Subject: [PATCH] set "allowJs" to false in tsconfig - 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,