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.
|
* Sets the trust mode for the notebook document.
|
||||||
*/
|
*/
|
||||||
setTrusted(state: boolean);
|
setTrusted(state: boolean): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IStandardKernel {
|
export interface IStandardKernel {
|
||||||
|
|||||||
@@ -1,16 +1,42 @@
|
|||||||
{
|
{
|
||||||
"extends": "./tsconfig.json",
|
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"noEmit": true,
|
"target": "es2017",
|
||||||
|
"module": "amd",
|
||||||
|
"moduleResolution": "node",
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"noImplicitReturns": true,
|
"noImplicitReturns": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"strictNullChecks": true,
|
"baseUrl": ".",
|
||||||
"strictPropertyInitialization": true,
|
"removeComments": false,
|
||||||
|
"preserveConstEnums": true,
|
||||||
|
"sourceMap": false,
|
||||||
|
"noEmit": true,
|
||||||
"skipLibCheck": 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": [
|
"include": [
|
||||||
"./**/*.d.ts",
|
"./**/*.d.ts",
|
||||||
|
|||||||
Reference in New Issue
Block a user