forked from microsoft/vscode-copilot-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.worker.json
More file actions
27 lines (26 loc) · 782 Bytes
/
tsconfig.worker.json
File metadata and controls
27 lines (26 loc) · 782 Bytes
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
{
// This TS configuration is used to ensure that all source code in the
// layers common, vscode, worker, vscode-worker compile without errors
// when using ES2022 and WebWorker types.
//
// The intent is to compile against an environment that matches the
// web worker based extension host.
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": ["ES2022", "WebWorker"],
"types": [],
"noEmit": true,
"skipLibCheck": true,
"jsx": "react",
"jsxFactory": "vscpp",
"jsxFragmentFactory": "vscppf"
},
"include": [
"src/**/common/**/*.ts",
"src/**/vscode/**/*.ts",
"src/**/worker/**/*.ts",
"src/**/vscode-worker/**/*.ts",
"src/**/*.d.ts"
],
"exclude": ["src/**/test/**", "src/**/fixtures/**", "src/extension/completions-core/**/*.test.ts"]
}