bot/tsup.config.ts

10 lines
187 B
TypeScript
Raw Normal View History

2023-01-23 13:53:02 +00:00
import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
2023-01-28 09:15:09 +00:00
format: ['cjs'],
2023-01-30 08:58:17 +00:00
entry: ['src/index.ts', 'src/Commands/*.ts'],
2023-01-23 13:53:02 +00:00
minify: true,
2023-01-24 07:43:52 +00:00
splitting: true,
2023-01-23 13:53:02 +00:00
})