fix(ci): add @ant/model-provider to tsconfig paths
Bun workspace resolution fails on macOS CI for @ant/model-provider when imported from root src/. Add explicit paths mapping in tsconfig to match existing @claude-code-best/* pattern.
This commit is contained in:
parent
ce3b750524
commit
0aa22d680d
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"extends": "./tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
|
|
@ -23,7 +22,9 @@
|
|||
"@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/weixin": ["./packages/weixin/src/index.ts"],
|
||||
"@ant/model-provider": ["./packages/@ant/model-provider/src/index.ts"],
|
||||
"@ant/model-provider/*": ["./packages/@ant/model-provider/src/*"]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
|
|
@ -32,5 +33,5 @@
|
|||
"packages/**/*.ts",
|
||||
"packages/**/*.tsx"
|
||||
],
|
||||
"exclude": ["node_modules", "packages/remote-control-server/web"]
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user