mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-21 23:59:34 +01:00
24 lines
412 B
JSON
24 lines
412 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"WebWorker.ImportScripts"
|
|
],
|
|
"jsx": "react",
|
|
"rootDir": "../../../",
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"**/*",
|
|
"../../../src/extension/vscode-api.d.ts",
|
|
"../../../src/util/vs/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"../fixtures/**/*",
|
|
"../shims/vscodeTypesShim.ts"
|
|
]
|
|
}
|