Files
copilotkit__copilotkit/examples/v2/angular/storybook/tsconfig.json
Maxim d4132c7087 build(angular-storybook): upgrade to Angular 21 and Storybook 10
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.
2026-06-09 21:16:04 +02:00

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"]
}