mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-14 03:58:33 -05:00
* Revert "Revert "Merge from vscode merge-base (#22769)" (#22779)"
This reverts commit 47a1745180.
* Fix notebook download task
* Remove done call from extensions-ci
37 lines
773 B
JSON
37 lines
773 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"types": [
|
|
"trusted-types",
|
|
"wicg-file-system-access"
|
|
],
|
|
"paths": {},
|
|
"module": "amd",
|
|
"moduleResolution": "classic",
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"target": "es6",
|
|
"sourceMap": false,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"typings/require.d.ts",
|
|
"typings/thenable.d.ts",
|
|
"vs/loader.d.ts",
|
|
"vs/monaco.d.ts",
|
|
"vs/editor/*",
|
|
"vs/base/common/*",
|
|
"vs/base/browser/*",
|
|
"vs/platform/*/common/*",
|
|
"vs/platform/*/browser/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules/*",
|
|
"vs/platform/files/browser/htmlFileSystemProvider.ts",
|
|
"vs/platform/files/browser/webFileSystemAccess.ts",
|
|
"vs/platform/telemetry/*",
|
|
"vs/platform/assignment/*"
|
|
]
|
|
}
|