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