Files
azuredatastudio/extensions/azurecore/tsconfig.json
Charles Gagnon cd8a747522 Enable strictNullChecks for extensions by default (#19197)
* Strict null on extensions

* fix test

* Fail on no stdin
2022-04-25 09:19:42 -07:00

16 lines
245 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "./out",
"strict": false,
"noUnusedParameters": false,
"typeRoots": [
"./node_modules/@types"
],
"strictNullChecks": false
},
"include": [
"src/**/*"
]
}