From 7c1f661511b7e185c7e7eb524a0a6e6669d094b4 Mon Sep 17 00:00:00 2001 From: Duncan Grubbs Date: Sun, 28 Apr 2024 13:18:56 -0400 Subject: [PATCH] fix: production build ignores tests --- tsconfig.production.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.production.json b/tsconfig.production.json index e9e7412..322c351 100644 --- a/tsconfig.production.json +++ b/tsconfig.production.json @@ -15,5 +15,5 @@ "strictBindCallApply": true, "forceConsistentCasingInFileNames": true }, - "exclude": ["src/examples/**"] + "exclude": ["src/examples/**", "test/**"] }