Co-authored-by: Rares Stefan <948623+StephixOne@users.noreply.github.com> Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
dts: true,
|
|
skipNodeModulesBundle: true,
|
|
sourcemap: true,
|
|
minify: true,
|
|
clean: true,
|
|
format: ["cjs", "esm"],
|
|
})
|