From a837c81a084b86d46c7c76a8b6b1df35fa0d9087 Mon Sep 17 00:00:00 2001 From: Nour Alharithi Date: Tue, 17 Dec 2024 09:21:03 -0800 Subject: [PATCH] revert 5cf15f51331d7224991e97793f3775d1ae154323 --- esbuild.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esbuild.config.js b/esbuild.config.js index b269b11..6576824 100644 --- a/esbuild.config.js +++ b/esbuild.config.js @@ -19,10 +19,10 @@ const commonConfig = { }; (async () => { - let entryPoints = await glob("./src/**/*.ts"); + let entryPoints = await glob("./src/*.ts", { filesOnly: true }); await esbuild.build({ ...commonConfig, entryPoints, outdir: 'lib', }); -})().catch(() => process.exit(1)); +})().catch(() => process.exit(1)); \ No newline at end of file