mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
3b4d1eb7c8
Add GET /trigger/eval route to eval-webhook with HMAC-signed URLs. The showcase_eval_check.yml workflow now posts a bot comment with a clickable "Run Evaluation" link. Clicking triggers the eval and redirects back to the PR. The link is signed so it can't be forged.
18 lines
376 B
JSON
18 lines
376 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|