mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
28 lines
941 B
JSON
28 lines
941 B
JSON
{
|
|
"extends": "@copilotkitnext/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,
|
|
"paths": {
|
|
"@copilotkitnext/angular": ["../../../packages/angular/src/index.ts"],
|
|
"@copilotkitnext/angular/*": ["../../../packages/angular/src/*"],
|
|
"@copilotkitnext/core": ["../../../packages/core/src/index.ts"],
|
|
"@copilotkitnext/shared": ["../../../packages/shared/src/index.ts"]
|
|
},
|
|
"types": ["node"]
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", ".storybook/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|