mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
22 lines
572 B
JSON
22 lines
572 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"module": "NodeNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "NodeNext",
|
|
"noUncheckedIndexedAccess": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ES2022",
|
|
"noEmit": true,
|
|
"lib": ["es2022", "dom"],
|
|
"types": ["node"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@copilotkit/channels"
|
|
},
|
|
"include": ["app/**/*.ts", "app/**/*.tsx", "runtime.ts"],
|
|
"exclude": ["node_modules", "agent", "e2e"]
|
|
}
|