From 5d0f2af38fcb12cf3f89ce03289d4aa58abcd834 Mon Sep 17 00:00:00 2001 From: Cheng Lou Date: Mon, 22 May 2023 01:49:08 -0700 Subject: [PATCH] Explicitly list out our source dirs Afaik it was still faster due to not needing some kind of directory scan. Might be no longer true, but yeah nothing wrong with this just in case. --- bsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bsconfig.json b/bsconfig.json index 7bbd9ed3..3b932fdf 100644 --- a/bsconfig.json +++ b/bsconfig.json @@ -4,11 +4,10 @@ "sources": [ { "dir": "src", - "subdirs": true + "subdirs": ["intl", "typed-arrays"] }, { "dir": "test", - "subdirs": true, "type": "dev" } ],