Files
occulto/tsdown.config.ts
T
2026-06-01 01:05:19 +02:00

10 lines
167 B
TypeScript

import { defineConfig } from "tsdown";
export default defineConfig({
entry: ["./src/index.ts"],
format: "esm",
dts: true,
sourcemap: true,
clean: true,
});