From 620b45e5e25a19576110f209ad2f867aa5f6a451 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Fri, 29 May 2026 07:40:39 -0600 Subject: [PATCH] fix: exclude tests from build output, remove jest types\n\n- Add to tsconfig.json array (tests were being compiled to )\n- Remove from array (leaked test types into production build) --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 0988274..2dccb69 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,8 +12,8 @@ "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, - "types": ["node", "jest"] + "types": ["node"] }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "src/__tests__"] }