refactor: to rolldown, oxfmt, vitest (#89)
CD / Release (push) Successful in 37s

Reviewed-on: #89
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #89.
This commit is contained in:
2026-07-18 08:08:37 +02:00
committed by t.behrendt
parent 39e952658b
commit 6a063e91f5
14 changed files with 1950 additions and 4642 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,
});