From 752d7ed3d0bf960103983a9efa318054259bdaa9 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Tue, 5 May 2026 11:11:53 +0000 Subject: [PATCH] fix(auth): exclude test files from tsc compilation Exclude src/__tests__ from tsconfig to prevent test files from being compiled during Docker build. Fixes build-and-push-auth CI failure. Co-Authored-By: Paperclip --- auth/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/tsconfig.json b/auth/tsconfig.json index 764b72a..a1d4e8e 100644 --- a/auth/tsconfig.json +++ b/auth/tsconfig.json @@ -12,5 +12,5 @@ "resolveJsonModule": true }, "include": ["src"], - "exclude": ["node_modules", "dist"] + "exclude": ["node_modules", "dist", "src/__tests__"] }