refactor: replace esbuild with rolldown

This commit is contained in:
2026-07-18 07:44:03 +02:00
parent 0cd32ffb5e
commit 4cb5e68dd7
4 changed files with 421 additions and 569 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,
});