From caca64be639741b489c2447d7609b4d91539a494 Mon Sep 17 00:00:00 2001 From: Rafael Cardenas Date: Thu, 26 Oct 2023 22:42:13 -0600 Subject: [PATCH] fix: do not include tests in build output --- tsconfig.build.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.build.json b/tsconfig.build.json index 8dbb100..b7b108d 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,5 +1,6 @@ { "extends": "./tsconfig.json", "exclude": [ + "./src/**/__tests__/**" ] }