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

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