From b745d58ce0a41079f12da2532626877846a4ba1b Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Thu, 31 Jul 2025 22:49:36 -0400 Subject: [PATCH] Ensure that test and mock directories are excluded when compiling --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index e09cfff..dfc1303 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,5 +9,6 @@ "outDir": "dist", "sourceMap": true }, - "include": ["src"] + "include": ["src"], + "exclude": ["**/__tests__/*/**", "**/__mocks__/*/**"] }