openclaw/tsconfig.json
Jarvis b7393502cc feat(cron): add BullMQ backend with UI
- BullMQ-backed cron scheduling (Redis persistence, stall detection, retries)
- New /ui/cron/ Lit-based management UI
- Configurable via cron.redisUrl, cron.workerConcurrency, etc.
- Falls back to timer-based if CLAWDBOT_CRON_BACKEND=timer
- Redis auth support (username/password from URL)
- Fixed race condition in start() by copying jobs array
- Fixed silent failure when job disappears during execution
2026-01-28 17:21:04 +00:00

26 lines
557 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noEmitOnError": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*"],
"exclude": [
"node_modules",
"dist",
"src/**/*.test.ts",
"src/**/*.test.tsx",
"src/**/test-helpers.ts",
"src/cron-ui"
]
}