mirror of
https://github.com/balzack/databag.git
synced 2025-04-25 19:15:23 +00:00
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { defineConfig } from "tsup";
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
format: ["cjs", "esm"], // Build for commonJS and ESmodules
|
|
dts: true, // Generate declaration file (.d.ts)
|
|
splitting: false,
|
|
sourcemap: true,
|
|
clean: true,
|
|
});
|