Files
azuredatastudio/extensions/notebook/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

20 lines
304 B
JSON

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