fix(api): bundle with tsup to resolve ESM shared module execution

This commit is contained in:
AyrisAI
2026-08-20 02:16:07 +03:00
parent bace019314
commit e56f92bf56
4 changed files with 744 additions and 9 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
format: ["esm"],
clean: true,
noExternal: ["@menulio/shared"],
target: "node20",
sourcemap: false,
});