tsconfig tweaks based on what vscode suggests

master
Gordon Williams 2025-06-06 15:14:24 +01:00
parent 700a9f9f4a
commit 29f01b1ec6
1 changed files with 2 additions and 5 deletions

View File

@ -17,13 +17,13 @@
"declaration": false, "declaration": false,
"emitDeclarationOnly": false, "emitDeclarationOnly": false,
"removeComments": true, "removeComments": true,
"noImplicitUseStrict": true, // disable "use strict" //REMOVED "noImplicitUseStrict": true, // disable "use strict"
"newLine": "lf", "newLine": "lf",
"noEmitHelpers": true, // we link to specific banglejs implementations "noEmitHelpers": true, // we link to specific banglejs implementations
"noEmitOnError": false, "noEmitOnError": false,
"preserveConstEnums": false, "preserveConstEnums": false,
"importsNotUsedAsValues": "error", //REMOVED "importsNotUsedAsValues": "error",
"preserveValueImports": false, "preserveValueImports": false,
// interop constraints // interop constraints
@ -43,9 +43,6 @@
"strictBindCallApply": true, "strictBindCallApply": true,
"strictFunctionTypes": true, "strictFunctionTypes": true,
"strictPropertyInitialization": true, "strictPropertyInitialization": true,
"noImplicitAny": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
// simple type checking // simple type checking
"noUnusedLocals": true, "noUnusedLocals": true,