bot/tsup.config.ts
2024-06-22 15:07:46 +09:00

9 lines
215 B
TypeScript

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