mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 21:05:51 +00:00
Squashed 5 commits: Features (from 5 feature branches): - MCP fix, pipe mute, stub recovery - KAIROS activation, openclaw autonomy - Daemon/job command hierarchy + cross-platform bg engine Upstream fixes: - fix: Bun.hash compatibility - chore: chrome dependency update - docs: browser support guide MIME detection fix: - Screenshot detectMimeFromBase64(): decode raw bytes from base64 instead of broken charCodeAt comparison - Fixes API 400 on Windows (JPEG) and macOS (PNG) screenshots
27 lines
1.1 KiB
JSON
27 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["bun"],
|
|
"paths": {
|
|
"src/*": ["./src/*"],
|
|
"@claude-code-best/builtin-tools/*": ["./packages/builtin-tools/src/*"],
|
|
"@claude-code-best/builtin-tools": ["./packages/builtin-tools/src/index.ts"],
|
|
"@claude-code-best/mcp-client/*": ["./packages/mcp-client/src/*"],
|
|
"@claude-code-best/mcp-client": ["./packages/mcp-client/src/index.ts"],
|
|
"@claude-code-best/agent-tools/*": ["./packages/agent-tools/src/*"],
|
|
"@claude-code-best/agent-tools": ["./packages/agent-tools/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "packages/builtin-tools/src/**/*.ts", "packages/builtin-tools/src/**/*.tsx", "packages/mcp-client/src/**/*.ts"],
|
|
"exclude": ["node_modules", "packages/mcp-client/src/__tests__"]
|
|
}
|