From 1d2701e2130b0907e7553b252aa6a44b66761723 Mon Sep 17 00:00:00 2001 From: Matt Huggins Date: Sat, 25 Nov 2023 22:16:03 -0600 Subject: [PATCH] chore: exclude tests from build --- tsconfig.build.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index eeccde4..bb77d63 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,4 +1,4 @@ { "extends": "./tsconfig.json", - "exclude": ["./src/**/*.test.ts"] + "exclude": ["./src/**/*.test.ts", "__tests__"] }