mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* additions to sqlLocalizedExtensions * remove azdata from sqlLocalizedExtensions * fix extension files to work with nls.metadata.json function (required)
25 lines
454 B
JSON
25 lines
454 B
JSON
{
|
|
"extends": "../shared.tsconfig.json",
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"lib": [
|
|
"es6", "es2015.promise"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"strict": false,
|
|
"noUnusedParameters": false,
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|