scoresaber-reloadedv3/common/tsup.config.ts
Liam e105a76bf2
Some checks failed
Deploy Backend / deploy (push) Failing after 29s
impl simple backend
2024-10-04 22:21:37 +01:00

9 lines
153 B
TypeScript

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