Files
hugo-extended/tsdown.config.ts

11 lines
191 B
TypeScript

import { defineConfig } from "tsdown";
export default defineConfig({
entry: ["src/**/*.ts"],
outDir: "dist",
clean: true,
dts: true,
unbundle: true,
copy: ["src/generated"],
});