mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
import { defineConfig } from "vite-plus";
|
|
|
|
export default defineConfig({
|
|
pack: {
|
|
entry: ["./src/bin.ts", "./src/index.ts"],
|
|
format: "esm",
|
|
target: "node22",
|
|
platform: "node",
|
|
deps: { alwaysBundle: [/^@stanza\//] },
|
|
dts: true,
|
|
clean: true,
|
|
},
|
|
});
|