tsconfig tweaks based on what vscode suggests
parent
700a9f9f4a
commit
29f01b1ec6
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue