This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/common/tsup.config.ts

10 lines
220 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"],
splitting: false,
2024-10-04 21:21:37 +00:00
sourcemap: true,
2024-10-04 19:35:44 +00:00
clean: true,
2024-10-04 21:25:22 +00:00
dts: true, // This line enables type declaration file generation
2024-10-04 19:35:44 +00:00
});