mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
9f3b3c7126
Pure JSX runtime (no React, no Slack) producing a BotNode IR tree. Statically typed component props via a package-owned JSX namespace: unknown attributes, bad values, and bad children are compile errors. Components: Message, Header, Section, Markdown, Field, Context, Actions, Button, Select, Input, Image, Divider; bind() escape hatch for non-serializable handler captures.
14 lines
384 B
JSON
14 lines
384 B
JSON
{
|
|
"extends": "@copilotkit/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"lib": ["es2022"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@copilotkit/bot-ui",
|
|
"paths": { "@copilotkit/bot-ui/jsx-runtime": ["./src/jsx-runtime.ts"] }
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|