refactor: replace esbuild with rolldown

This commit is contained in:
2026-07-18 07:44:03 +02:00
parent 67c903d427
commit 37e649efc3
8 changed files with 1525 additions and 4593 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from "rolldown/config";
export default defineConfig({
input: "src/index.ts",
output: {
file: "dist/index.js",
format: "esm",
minify: true,
},
platform: "node",
treeshake: true,
});