bot/tsup.config.ts

10 lines
215 B
TypeScript
Raw Normal View History

2023-02-10 12:09:24 +00:00
import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
format: ['cjs'],
2024-06-22 06:07:46 +00:00
entry: ['src/index.ts', 'src/commands/*.ts', 'src/listeners/*.ts'],
2023-09-23 03:51:15 +00:00
// minify: true,
// splitting: true,
2023-02-10 12:09:24 +00:00
})