mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
24 lines
414 B
JSON
24 lines
414 B
JSON
{
|
|
"extends": "../shared.tsconfig.json",
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"lib": [
|
|
"es6",
|
|
"es2015.promise"
|
|
],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"strict": false,
|
|
"noUnusedParameters": false,
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|