mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-24 00:05:46 +01:00
* 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
21 lines
308 B
JSON
21 lines
308 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react",
|
|
"jsxFactory": "vscpp",
|
|
"jsxFragmentFactory": "vscppf",
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"test"
|
|
],
|
|
"exclude": []
|
|
}
|