Files
2026-07-13 12:58:18 +08:00

43 lines
1.2 KiB
JSON

{
"extends": "@copilotkit/typescript-config/base.json",
"compilerOptions": {
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"lib": ["ES2022", "DOM"],
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"types": ["node"],
"paths": {
"@copilotkit/a2ui-renderer/web-components": [
"../a2ui-renderer/src/web-components/index.ts"
],
"@copilotkit/a2ui-renderer/web-components/define": [
"../a2ui-renderer/src/web-components/define.ts"
],
"@copilotkit/core": ["../core/dist/index.d.mts", "../core/src/index.ts"],
"@copilotkit/shared": [
"../shared/dist/index.d.mts",
"../shared/src/index.ts"
]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"],
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}