From 29f01b1ec68593504d7679d55d6550c926329b04 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Fri, 6 Jun 2025 15:14:24 +0100 Subject: [PATCH] tsconfig tweaks based on what vscode suggests --- tsconfig.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5d46f672c..6b89e2bbd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,13 +17,13 @@ "declaration": false, "emitDeclarationOnly": false, "removeComments": true, - "noImplicitUseStrict": true, // disable "use strict" + //REMOVED "noImplicitUseStrict": true, // disable "use strict" "newLine": "lf", "noEmitHelpers": true, // we link to specific banglejs implementations "noEmitOnError": false, "preserveConstEnums": false, - "importsNotUsedAsValues": "error", + //REMOVED "importsNotUsedAsValues": "error", "preserveValueImports": false, // interop constraints @@ -43,9 +43,6 @@ "strictBindCallApply": true, "strictFunctionTypes": true, "strictPropertyInitialization": true, - "noImplicitAny": true, - "noImplicitThis": true, - "useUnknownInCatchVariables": true, // simple type checking "noUnusedLocals": true,