feat: Bundler with tsdown

This commit is contained in:
2026-05-07 13:49:39 -04:00
parent 52ce8bc622
commit 9d2d5d27fa
8 changed files with 569 additions and 17 deletions

10
tsdown.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from "tsdown";
export default defineConfig({
entry: ["src/cli.ts"],
format: "esm",
target: "node24",
dts: true,
clean: true,
platform: "node",
});