scoresaber-reloadedv3/backend/tsup.config.ts
Liam 98c52e5525
Some checks failed
Deploy Backend / deploy (push) Failing after 25s
Deploy Frontend / deploy (push) Failing after 10s
let's try this again
2024-10-04 20:35:44 +01:00

11 lines
193 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
format: ["esm", "cjs"],
splitting: false,
dts: true,
clean: true,
outDir: "./dist",
});