scoresaber-reloadedv3/backend/tsup.config.ts

11 lines
193 B
TypeScript
Raw Normal View History

2024-10-04 19:35:44 +00:00
import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
format: ["esm", "cjs"],
splitting: false,
dts: true,
clean: true,
outDir: "./dist",
});