From e7aa83e0732ae187c87f889ee3c3348e3d88897c Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Wed, 16 Jul 2025 09:44:33 -0400 Subject: [PATCH] chore: update tsconfig.json to exclude additional test files --- packages/client/tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/client/tsconfig.json b/packages/client/tsconfig.json index 2c160a3f22..447cb1e66a 100644 --- a/packages/client/tsconfig.json +++ b/packages/client/tsconfig.json @@ -23,5 +23,12 @@ "resolveJsonModule": true }, "include": ["src/**/*"], - "exclude": ["dist", "node_modules", "**/*.test.ts", "**/*.test.tsx"] + "exclude": [ + "dist", + "node_modules", + "**/*.test.ts", + "**/*.test.tsx", + "**/*.spec.ts", + "**/*.spec.tsx" + ] }