mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2026-07-29 19:55:21 -04:00
11 lines
191 B
TypeScript
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"],
|
|
});
|