mirror of
https://github.com/zilliztech/claude-context.git
synced 2025-10-06 01:10:02 +03:00
* Add Gemini API basic URL configuration, optimize CI workflow to support multiple operating systems, update dependencies and fix cleanup scripts * Optimize build performance, add Windows specific settings and troubleshooting documentation, update configurations to support incremental builds and caching * Optimize CI workflow to support cross platform build output validation, update documentation to include validation commands for Windows and Unix
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"ES2020"
|
|
],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"composite": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"downlevelIteration": true,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": ".tsbuildinfo",
|
|
"paths": {
|
|
"@zilliz/claude-context-core": [
|
|
"./packages/core/src"
|
|
],
|
|
"@zilliz/claude-context-core/*": [
|
|
"./packages/core/src/*"
|
|
]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "./packages/core"
|
|
},
|
|
{
|
|
"path": "./packages/vscode-extension"
|
|
},
|
|
{
|
|
"path": "./packages/chrome-extension"
|
|
},
|
|
{
|
|
"path": "./packages/mcp"
|
|
}
|
|
],
|
|
"files": []
|
|
} |