Files
claude-context-mcp/tsconfig.json
Max Qian 54cc336378 Add custom gemini baseurl support (#183)
* 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
2025-08-30 21:52:52 +08:00

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": []
}