mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-22 17:22:59 -05:00
* Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463 * fix config changes * fix strictnull checks
28 lines
490 B
JSON
28 lines
490 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "amd",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"strictBindCallApply": true,
|
|
"strictNullChecks": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"vs/*": [
|
|
"./vs/*"
|
|
],
|
|
"sql/*": [
|
|
"./sql/*"
|
|
],
|
|
"sqltest/*": [
|
|
"./sqltest/*"
|
|
]
|
|
}
|
|
}
|
|
}
|