Files
vscode/src/tsconfig.monaco.json
2024-08-08 09:49:56 -07:00

42 lines
940 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": "ES2022",
"sourceMap": false,
"declaration": true
},
"include": [
"typings/css.d.ts",
"typings/require.d.ts",
"typings/thenable.d.ts",
"typings/vscode-globals-product.d.ts",
"typings/vscode-globals-nls.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/*",
"vs/platform/terminal/*",
"vs/platform/externalTerminal/*"
]
}