websri/tsup.config.ts

11 lines
174 B
TypeScript
Raw Normal View History

2024-09-03 03:14:59 +09:00
import { defineConfig } from "tsup";
export default defineConfig(() => {
return {
clean: true,
dts: true,
entry: ["src"],
format: ["cjs", "esm"],
};
});