Files
copilotkit__copilotkit/packages/bot/tsconfig.json
Alem Tuzlak 16210c61b9 feat(bot): platform-agnostic bot engine
createBot with handler registration (onMention/onMessage/onInterrupt/
onCommand), the agent run/tool/interrupt loop, content-stable JSX
action binding with cold-path rehydration from a pluggable ActionStore,
the PlatformAdapter boundary, capability-gated thread methods, one
shared BotToolContext, defineBotTool / defineBotCommand, and typed
interaction/interrupt handlers. Includes fake-adapter/fake-agent
testing utilities.
2026-06-10 10:46:08 -07:00

7 lines
208 B
JSON

{
"extends": "@copilotkit/typescript-config/base.json",
"compilerOptions": { "outDir": "dist", "rootDir": "src", "lib": ["es2022"] },
"include": ["src/**/*.ts"],
"exclude": ["dist", "node_modules"]
}