Files
cline/sdk/apps/code/tsconfig.dev.json
T
Bee 7a042fe257 refactor: Hub & Spoke (#203)
- 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
2026-04-21 19:59:54 -07:00

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"]
}