mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* turn on noUnusedParameters in Schema Compare * use _click * Add names to unused parameters in test files
25 lines
464 B
JSON
25 lines
464 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"outDir": "./out",
|
|
"lib": [
|
|
"es6",
|
|
"es2015.promise"
|
|
],
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
"strictNullChecks": false
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|