mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
d4132c7087
Bump @angular/* and devkit/cli to ^21, TypeScript to ~5.9, zone.js to ~0.15,
and Storybook to ^10 (essentials/interactions folded into addon-docs/core).
Restore the correct `backgrounds: { disable: true }` parameter key, type the
getAbsolutePath helper as string, and import ChatState as a value (it is a DI
token). Stories consume the library's real Angular 21 types.
22 lines
621 B
JSON
22 lines
621 B
JSON
{
|
|
"extends": "@copilotkit/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "dom"],
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": false,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", ".storybook/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|