Files
copilotkit__copilotkit/packages/v1/cli/tsconfig.json
Jordan Ritter ad81aaa524 fix: address review findings in migrated CLI package
- Remove copy-paste triplication in scaffoldAgent (LangSmith block
  duplicated twice, causing duplicate .env entries and redundant writes)
- Update AgentTemplates URLs to point to monorepo paths instead of
  archived standalone repos
- Fix flags.projectName → args.projectName in banner logic (projectName
  is an Args field, not Flags)
- Remove stale trpc-cli path mapping and project reference from
  tsconfig.json (package doesn't exist in this monorepo)
2026-03-12 13:06:03 -07:00

25 lines
444 B
JSON

{
"compilerOptions": {
"incremental": false,
"declaration": true,
"module": "Node16",
"outDir": "dist",
"strict": true,
"target": "es2022",
"moduleResolution": "node16",
"esModuleInterop": true,
"types": [
"node"
],
"skipLibCheck": true,
"strictNullChecks": true,
"sourceMap": true,
"sourceRoot": "/",
},
"include": [
"./src/**/*"
],
"ts-node": {
"esm": true
}
}