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

export default defineConfig({
  entry: ["index.ts"],
  splitting: false,
  sourcemap: true,
  clean: true,
});