From 70957e462a34da3de9a3d82480d3375f02a49cd5 Mon Sep 17 00:00:00 2001 From: Fusion Date: Fri, 22 May 2026 20:53:38 +0200 Subject: [PATCH] fix: exclude test files from TypeScript build - Add exclude pattern for **/*.test.ts and **/*.test.tsx in tsconfig.json - Fixes deployment build failures caused by type mismatches in test mocks --- apps/web/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 5dad5fe..f09afba 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -12,5 +12,6 @@ "isolatedModules": true, "types": ["vite/client"] }, - "include": ["src"] + "include": ["src"], + "exclude": ["**/*.test.ts", "**/*.test.tsx"] }