mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-13 11:02:59 -04:00
* add more folders to strictire compile, add more strict compile options * update ci * wip * add more layering and fix issues * add more strictness * remove unnecessary assertion * add missing checks * fix indentation * remove jsdoc
36 lines
845 B
JSON
36 lines
845 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"./typings",
|
|
"./vs/vscode.d.ts",
|
|
"./vs/vscode.proposed.d.ts",
|
|
"./vs/monaco.d.ts",
|
|
"./sql/azdata.d.ts",
|
|
"./sql/azdata.proposed.d.ts",
|
|
"./vs/base/**/*.ts",
|
|
// "./vs/code/**/*.ts",
|
|
"./vs/editor/**/*.ts",
|
|
"./vs/platform/**/*.ts",
|
|
"./sql/base/**/*.ts",
|
|
"./sql/editor/**/*.ts",
|
|
"./sql/platform/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"./vs/platform/workspaces/test/electron-main/workspacesMainService.test.ts"
|
|
]
|
|
}
|