From e6f674c6222603a179ac4dd21969a370db9d0524 Mon Sep 17 00:00:00 2001 From: Alina Sireneva Date: Thu, 7 Mar 2024 03:39:59 +0300 Subject: [PATCH] build: fixed `.test.js` files being included in the package --- .config/tsconfig.build.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/tsconfig.build.json b/.config/tsconfig.build.json index 9ad2904c..18f56a25 100644 --- a/.config/tsconfig.build.json +++ b/.config/tsconfig.build.json @@ -1,7 +1,7 @@ { "extends": "../tsconfig.json", "exclude": [ - "**/*.test.ts", - "**/*.test-utils.ts" + "../**/*.test.ts", + "../**/*.test-utils.ts" ] }