mirror of
https://github.com/aiclientproxy/proxycast.git
synced 2026-09-24 23:10:56 +08:00
新增功能: - 浏览器拦截器模块,支持 macOS 系统默认浏览器接管 - 自动拦截系统 URL 请求并转发到 AI 客户端 - URL 历史记录管理与复制功能 - 系统状态监控面板 - 支持 Chrome/Firefox/Safari 等多浏览器检测与恢复 技术改进: - 使用 tauri-plugin-deep-link 实现 URL scheme 注册 - 使用 tauri-plugin-single-instance 防止多实例 - Launch Services API 集成实现浏览器管理 - 修复速率限制测试的不稳定性问题 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
631 B
JSON
26 lines
631 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": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|