From 4584c9d8aac7250ce46564a0189a523a5caf6423 Mon Sep 17 00:00:00 2001 From: jpwilson Date: Tue, 24 Feb 2026 22:30:16 -0600 Subject: [PATCH] Fix build: exclude eval scripts from tsconfig, enhance feedback UI --- apps/api/tsconfig.app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/tsconfig.app.json b/apps/api/tsconfig.app.json index d38ef826f..6dc6386f7 100644 --- a/apps/api/tsconfig.app.json +++ b/apps/api/tsconfig.app.json @@ -8,6 +8,6 @@ "target": "es2021", "module": "commonjs" }, - "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], + "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts", "**/agent-eval*.ts"], "include": ["**/*.ts"] }