mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
ad81aaa524
- 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)
25 lines
444 B
JSON
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
|
|
}
|
|
} |