mirror of
https://github.com/aiclientproxy/proxycast.git
synced 2026-09-21 12:44:14 +08:00
- Tauri 2.0 + React 18 + TypeScript + Tailwind CSS - Provider management with Kiro credential loading - Auto-detect credential file changes (5s interval) - Dashboard with API testing panel - Settings page for server configuration - Logs viewer with real-time updates - OpenAI compatible API endpoints (/v1/chat/completions, /v1/models) - Anthropic compatible API endpoints (/v1/messages) - Default port: 3001, API key: proxycast-key
26 lines
629 B
JSON
26 lines
629 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|