Files
vscode/extensions/copilot/chat-lib/tsconfig.base.json
Christof Marti 3b795b1e58 Extract @vscode/chat-lib (#807)
* Extract chat lib

* Extract chat lib

* Add test

* Get test working

* Simulate response

* Fix type issue

* Package

* Cleanup

* Tuck away workspace service

* Include package.json

* Ensure shim is used

* Include tiktoken files in package

* Update @vscode/copilot-api

* Ignore chat-lib
2025-08-29 14:41:27 +00:00

23 lines
545 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2022",
"lib": ["ES2022"],
"sourceMap": true,
"experimentalDecorators": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"useDefineForClassFields": false,
"allowUnreachableCode": false,
"strict": true,
"exactOptionalPropertyTypes": false,
"useUnknownInCatchVariables": false,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
}
}