Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/tsconfig.worker.json
13379 views
1
{
2
// This TS configuration is used to ensure that all source code in the
3
// layers common, vscode, worker, vscode-worker compile without errors
4
// when using ES2022 and WebWorker types.
5
//
6
// The intent is to compile against an environment that matches the
7
// web worker based extension host.
8
"extends": "./tsconfig.base.json",
9
"compilerOptions": {
10
"lib": [
11
"ES2022",
12
"WebWorker"
13
],
14
"types": [],
15
"noEmit": true,
16
"skipLibCheck": true,
17
"jsx": "react",
18
"jsxFactory": "vscpp",
19
"jsxFragmentFactory": "vscppf"
20
},
21
"include": [
22
"src/**/common/**/*.ts",
23
"src/**/vscode/**/*.ts",
24
"src/**/worker/**/*.ts",
25
"src/**/vscode-worker/**/*.ts",
26
"src/**/*.d.ts"
27
],
28
"exclude": [
29
"src/**/test/**",
30
"src/**/fixtures/**",
31
"src/extension/completions-core/**/*.test.ts"
32
]
33
}
34
35