mirror of
https://github.com/cline/cline.git
synced 2026-09-01 15:11:04 +08:00
7a042fe257
- Remove rpc and scheduler packages -Add `packages/hub` as a first-class workspace package - Move Scheduling Into The Hub - Rewire schedule-triggered runtime execution so the hub assigns work to spokes instead of delegating through RPC services - Replace RPC schedule CRUD and execution APIs with hub-native command handlers and shared schedule/event types. - Replace RPC-first runtime selection with `local` / `hub` / `remote` runtime modes in `@clinebot/core` - Clients can attach to a running session from the hub
22 lines
661 B
JSON
22 lines
661 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@clinebot/core": ["../../packages/core/src/index.ts"],
|
|
"@clinebot/hub": ["../../packages/hub/src/index.ts"],
|
|
"@clinebot/shared": ["../../packages/shared/src/index.ts"],
|
|
"@clinebot/shared/storage": [
|
|
"../../packages/shared/src/storage/index.ts"
|
|
],
|
|
"@clinebot/shared/db": ["../../packages/shared/src/db/index.ts"],
|
|
"@clinebot/shared/*": [
|
|
"../../packages/shared/src/*",
|
|
"../../packages/shared/src/*/index.ts"
|
|
]
|
|
}
|
|
},
|
|
"include": ["sidecar/**/*.ts", "scripts/**/*.ts", "global.d.ts", "bun.mts"],
|
|
"exclude": ["node_modules", "webview"]
|
|
}
|