mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-19 06:39:55 +01:00
3b795b1e58
* 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
23 lines
545 B
JSON
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
|
|
}
|
|
}
|