mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
4ba201b5c4
Repairs TypeScript check-types across the monorepo and adds a CI gate so regressions are caught going forward: - core: bundler module resolution and strict-mode fixes - sdk-js: bundler module resolution; keep codegen, formatter, packaging working - react-core: fixes across components, hooks, and tests - react-native: restore catch binding referenced by TypeError cause - runtime: repair check-types and bound AI SDK schema inference - web-inspector: nodenext import extensions, export Anchor - remaining packages and node example: assorted check-types repairs - deps: add missing type-only devDependencies - license context driven from /info licenseStatus - ci: run check-types in the static quality workflow Squashed from 12 commits for a single, easily-revertable change.
20 lines
471 B
JSON
20 lines
471 B
JSON
{
|
|
"extends": "@copilotkit/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|