This repository has been archived on 2025-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
bot/tsup.config.ts

9 lines
166 B
TypeScript

import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
format: ['esm'],
entry: ['src/index.ts'],
minify: true,
splitting: true,
})