-
Notifications
You must be signed in to change notification settings - Fork 31.8k
/
Copy pathtsconfig.json
56 lines (56 loc) · 1.35 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"esModuleInterop": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": false,
"allowJs": true,
"resolveJsonModule": true,
"isolatedModules": false,
"outDir": "../out/vs",
"types": [
"@webgpu/types",
"mocha",
"semver",
"sinon",
"trusted-types",
"winreg",
"wicg-file-system-access"
],
"plugins": [
{
"name": "tsec",
"exemptionConfig": "./tsec.exemptions.json"
}
]
},
"include": [
"./bootstrap-amd.js",
"./bootstrap-cli.js",
"./bootstrap-fork.js",
"./bootstrap-import.js",
"./bootstrap-meta.js",
"./bootstrap-node.js",
"./bootstrap-server.js",
"./bootstrap-window.js",
"./cli.js",
"./main.js",
"./server-main.js",
"./server-cli.js",
"./vs/base/common/jsonc.js",
"./vs/base/common/performance.js",
"./vs/base/node/unc.js",
"./vs/base/node/nls.js",
"./vs/platform/environment/node/userDataPath.js",
"./vs/base/parts/sandbox/electron-sandbox/preload-aux.js",
"./vs/base/parts/sandbox/electron-sandbox/preload.js",
"./vs/code/electron-sandbox/processExplorer/processExplorer.js",
"./vs/code/electron-sandbox/workbench/workbench.js",
"./vs/workbench/contrib/issue/electron-sandbox/issueReporter.js",
"./typings",
"./vs/**/*.ts",
"vscode-dts/vscode.proposed.*.d.ts",
"vscode-dts/vscode.d.ts"
]
}