Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/tsconfig.json
3285 views
1
{
2
"extends": "./tsconfig.base.json",
3
"compilerOptions": {
4
"esModuleInterop": true,
5
"removeComments": false,
6
"preserveConstEnums": true,
7
"sourceMap": false,
8
"allowJs": true,
9
"resolveJsonModule": true,
10
"isolatedModules": false,
11
"outDir": "../out/vs",
12
"types": [
13
"@webgpu/types",
14
"mocha",
15
"semver",
16
"sinon",
17
"trusted-types",
18
"winreg",
19
"wicg-file-system-access"
20
],
21
"plugins": [
22
{
23
"name": "tsec",
24
"exemptionConfig": "./tsec.exemptions.json"
25
}
26
]
27
},
28
"include": [
29
"./*.ts",
30
"./typings",
31
"./vs/**/*.ts",
32
"./vscode-dts/vscode.proposed.*.d.ts",
33
"./vscode-dts/vscode.d.ts"
34
],
35
"exclude": [
36
"vs/workbench/contrib/webview/browser/pre/service-worker.js"
37
]
38
}
39
40