mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Clean up tsconfig.base.json (#17220)
* Clean up tsconfig.base.json * revert param name * Try removing comments * use newer option again * revert option again * more
This commit is contained in:
@@ -427,7 +427,6 @@
|
|||||||
"sinon": "^9.0.2",
|
"sinon": "^9.0.2",
|
||||||
"tslint": "^5.8.0",
|
"tslint": "^5.8.0",
|
||||||
"typemoq": "^2.1.0",
|
"typemoq": "^2.1.0",
|
||||||
"typescript": "^2.6.1",
|
|
||||||
"vscodetestcover": "^1.1.0"
|
"vscodetestcover": "^1.1.0"
|
||||||
},
|
},
|
||||||
"__metadata": {
|
"__metadata": {
|
||||||
|
|||||||
@@ -2,18 +2,16 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "amd",
|
"module": "amd",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"noImplicitAny": false,
|
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
"noImplicitOverride": true,
|
"noImplicitOverride": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"noImplicitThis": true,
|
|
||||||
"alwaysStrict": true,
|
|
||||||
"strictBindCallApply": true,
|
|
||||||
"strictNullChecks": false,
|
|
||||||
"strictPropertyInitialization": false,
|
|
||||||
"allowUnreachableCode": false,
|
"allowUnreachableCode": false,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
// Much of our code isn't strict-null compliant so disable these for now
|
||||||
|
"strictNullChecks": false,
|
||||||
|
// Disable since without strictNullChecks this has lots of errors in both vs and our code
|
||||||
|
"noImplicitAny": false,
|
||||||
"strictOptionalProperties": false,
|
"strictOptionalProperties": false,
|
||||||
"useUnknownInCatchVariables": false,
|
"useUnknownInCatchVariables": false,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
|
|||||||
Reference in New Issue
Block a user