summaryrefslogtreecommitdiff
path: root/tsup.config.ts
blob: 76a9a745fc859093bee6f8d255ca0e7b27652f10 (plain)
1
2
3
4
5
6
7
8
import {defineConfig} from "tsup";

export default defineConfig({
    entry: ["src/index.ts"],
    clean: true,
    format: ["cjs", "esm"],
    dts: true
})