From 11d6faa34b9ccf5cb791a7315879d8e3252c7b58 Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Fri, 31 Jul 2026 01:33:52 +0200 Subject: [PATCH] fix: tsconfig exclude test files for frontend build --- frontend/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 6e14990..f4075b5 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -23,5 +23,6 @@ "@/*": ["./src/*"] } }, - "include": ["src"] + "include": ["src"], + "exclude": ["src/**/__tests__/**", "src/**/*.test.*", "src/**/*.spec.*", "src/test/**"] }