mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 07:47:23 +01:00
Follow up on #271145 This aligns monaco with our main tsconfig target. Tries adopting `findLastIndex` to verify
43 lines
989 B
JSON
43 lines
989 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"types": [
|
|
"@webgpu/types",
|
|
"trusted-types",
|
|
"wicg-file-system-access"
|
|
],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"target": "ES2024",
|
|
"sourceMap": false,
|
|
"declaration": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"typings/css.d.ts",
|
|
"typings/thenable.d.ts",
|
|
"typings/vscode-globals-product.d.ts",
|
|
"typings/vscode-globals-nls.d.ts",
|
|
"typings/editContext.d.ts",
|
|
"typings/base-common.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/*",
|
|
"vs/platform/terminal/*",
|
|
"vs/platform/externalTerminal/*"
|
|
]
|
|
}
|