Files
NekoMelody/tsup.config.ts
2024-06-19 11:55:35 +07:00

11 lines
197 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig({
target: "es2020",
format: ["cjs", "esm"],
splitting: false,
sourcemap: true,
clean: true,
dts: true,
});