mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* enable stricter compile settings in extensions * more strict compile * formatting * formatting * revert some changes * formtting * formatting
18 lines
243 B
JSON
18 lines
243 B
JSON
{
|
|
"extends": "../shared.tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom"
|
|
],
|
|
"outDir": "./out",
|
|
"strict": false,
|
|
"noUnusedParameters": false,
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|