From 78862a56305334068747e00207f3605e215ed4c3 Mon Sep 17 00:00:00 2001 From: HailBytes Repo Agent Date: Fri, 29 May 2026 07:41:04 -0600 Subject: [PATCH] fix: add test exclusion to base tsconfig\n\n- Add array to to prevent test files from being compiled\n- Excludes , , and --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 336a8e9..7fe5500 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,5 +13,6 @@ "esModuleInterop": true, "skipLibCheck": true }, - "include": ["src"] + "include": ["src"], + "exclude": ["node_modules", "dist", "src/**/*.test.ts"] }