Files
conventional-semantic-git-t…/rolldown.config.ts
T
t.behrendt 6a063e91f5
CD / Release (push) Successful in 37s
refactor: to rolldown, oxfmt, vitest (#89)
Reviewed-on: #89
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-07-18 08:08:37 +02:00

13 lines
228 B
TypeScript

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,
});