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