ecommerce-template/apps/api/tsup.config.ts
2025-06-19 02:40:01 +08:00

8 lines
181 B
TypeScript

import { defineConfig, type Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/**/*"],
clean: true,
format: ["cjs"],
...options,
}));