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,
"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,