-
Notifications
You must be signed in to change notification settings - Fork 16.4k
Expand file tree
/
Copy pathtsconfig.json
More file actions
42 lines (42 loc) · 1.38 KB
/
Copy pathtsconfig.json
File metadata and controls
42 lines (42 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"extends": "./tsconfig.base.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"],
"@claude-code-best/weixin/*": ["./packages/weixin/src/*"],
"@claude-code-best/weixin": ["./packages/weixin/src/index.ts"],
"@claude-code-best/workflow-engine/*": [
"./packages/workflow-engine/src/*"
],
"@claude-code-best/workflow-engine": [
"./packages/workflow-engine/src/index.ts"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"packages/**/*.ts",
"packages/**/*.tsx"
],
"exclude": ["node_modules", "packages/remote-control-server/web"]
}