From 1c0050f4b1ceecfc3b6f2fa2733d8e4f5b9d777a Mon Sep 17 00:00:00 2001 From: Claude Assistant Date: Mon, 22 Sep 2025 14:33:06 +0000 Subject: [PATCH] Fix TypeScript configuration by excluding test files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Exclude __tests__ directory from TypeScript compilation - Resolves Jest type definition errors in test files - TypeScript now compiles cleanly without errors 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 23ae284..537ef56 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -37,6 +37,7 @@ ], "exclude": [ "node_modules", - "scripts" + "scripts", + "__tests__" ] }