scoresaber-reloadedv3/common/tsup.config.ts
2024-10-04 22:25:22 +01:00

10 lines
220 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
splitting: false,
sourcemap: true,
clean: true,
dts: true, // This line enables type declaration file generation
});