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

13 lines
196 B
JSON

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