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