9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
|
import { defineConfig } from "tsup";
|
||
|
|
||
|
export default defineConfig({
|
||
|
entryPoints: ["src/index.ts"],
|
||
|
format: ["cjs", "esm"],
|
||
|
dts: true,
|
||
|
outDir: "dist",
|
||
|
clean: true,
|
||
|
});
|