configuration-dprint/tsdown.config.ts
2025-09-28 11:02:19 +02:00

12 lines
222 B
TypeScript

import { defineConfig } from "tsdown";
export default defineConfig({
clean: true,
dts: true,
entry: ["./index.ts"],
minify: true,
platform: "node",
sourcemap: false,
target: "esnext",
treeshake: true,
});