scoresaber-reloadedv3/projects/common/tsup.config.ts
2024-10-08 15:32:02 +01:00

11 lines
251 B
TypeScript

import { defineConfig } from "tsup";
export default defineConfig({
entry: ["src/index.ts"],
splitting: false,
sourcemap: true,
clean: true,
dts: true, // Generates type declarations
format: ["esm"], // Ensures output is in ESM format
});