14 lines
393 B
JSON
14 lines
393 B
JSON
{
|
|
"extends": "@copilotkit/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"lib": ["es2022"],
|
|
"types": ["node"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@copilotkit/channels-ui",
|
|
"paths": { "@copilotkit/channels-ui/jsx-runtime": ["./src/jsx-runtime.ts"] }
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|