Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/tsconfig.monaco.json
3285 views
1
{
2
"extends": "./tsconfig.base.json",
3
"compilerOptions": {
4
"noEmit": true,
5
"types": [
6
"@webgpu/types",
7
"trusted-types",
8
"wicg-file-system-access"
9
],
10
"paths": {},
11
"module": "amd",
12
"moduleResolution": "node",
13
"removeComments": false,
14
"preserveConstEnums": true,
15
"target": "ES2022",
16
"sourceMap": false,
17
"declaration": true
18
},
19
"include": [
20
"typings/css.d.ts",
21
"typings/thenable.d.ts",
22
"typings/vscode-globals-product.d.ts",
23
"typings/vscode-globals-nls.d.ts",
24
"typings/editContext.d.ts",
25
"typings/base-common.d.ts",
26
"vs/monaco.d.ts",
27
"vs/editor/*",
28
"vs/base/common/*",
29
"vs/base/browser/*",
30
"vs/platform/*/common/*",
31
"vs/platform/*/browser/*"
32
],
33
"exclude": [
34
"node_modules/*",
35
"vs/platform/files/browser/htmlFileSystemProvider.ts",
36
"vs/platform/files/browser/webFileSystemAccess.ts",
37
"vs/platform/telemetry/*",
38
"vs/platform/assignment/*",
39
"vs/platform/terminal/*",
40
"vs/platform/externalTerminal/*"
41
]
42
}
43
44