1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2026-06-24 08:05:57 -04:00
Files
hugo-extended/tsdown.config.ts
T

13 lines
211 B
TypeScript

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