mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
simplify tsconfig (#11927)
This commit is contained in:
2
src/sql/azdata.proposed.d.ts
vendored
2
src/sql/azdata.proposed.d.ts
vendored
@@ -34,7 +34,7 @@ declare module 'azdata' {
|
||||
/**
|
||||
* Sets the trust mode for the notebook document.
|
||||
*/
|
||||
setTrusted(state: boolean);
|
||||
setTrusted(state: boolean): void;
|
||||
}
|
||||
|
||||
export interface IStandardKernel {
|
||||
|
||||
@@ -1,16 +1,42 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"noEmit": true,
|
||||
"target": "es2017",
|
||||
"module": "amd",
|
||||
"moduleResolution": "node",
|
||||
"experimentalDecorators": true,
|
||||
"noImplicitReturns": true,
|
||||
"noUnusedLocals": true,
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"strictNullChecks": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"baseUrl": ".",
|
||||
"removeComments": false,
|
||||
"preserveConstEnums": true,
|
||||
"sourceMap": false,
|
||||
"noEmit": true,
|
||||
"skipLibCheck": true,
|
||||
"noImplicitAny": true
|
||||
"paths": {
|
||||
"vs/*": [
|
||||
"./vs/*"
|
||||
],
|
||||
"sql/*": [
|
||||
"./sql/*"
|
||||
]
|
||||
},
|
||||
"lib": [
|
||||
"ES2015",
|
||||
"ES2017.String",
|
||||
"ES2018.Promise",
|
||||
"DOM",
|
||||
"DOM.Iterable",
|
||||
"WebWorker.ImportScripts"
|
||||
],
|
||||
"types": [
|
||||
"keytar",
|
||||
"mocha",
|
||||
"semver",
|
||||
"sinon",
|
||||
"winreg"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"./**/*.d.ts",
|
||||
|
||||
Reference in New Issue
Block a user