From b2688c0cce6dc8d5a97907c050da3b6143e86228 Mon Sep 17 00:00:00 2001 From: SnapAPI CEO Date: Wed, 25 Feb 2026 08:09:58 +0000 Subject: [PATCH] fix: exclude test files from tsc build --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e590fb3..9ebbae3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,5 @@ "declaration": true }, "include": ["src/**/*"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "src/**/__tests__/**", "src/**/*.test.*"] }