Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: liyasthomas <liyascthomas@gmail.com> Co-authored-by: Gita Alekhya Paul <gitaalekhyapaul@gmail.com>
12 lines
209 B
TypeScript
12 lines
209 B
TypeScript
import { defineConfig } from "tsup"
|
|
|
|
export default defineConfig({
|
|
entry: ["src/index.ts"],
|
|
outDir: "./lib/",
|
|
format: ["esm", "cjs"],
|
|
dts: true,
|
|
splitting: true,
|
|
sourcemap: true,
|
|
clean: true,
|
|
})
|