bot/tsup.config.ts

10 lines
166 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-24 07:43:52 +00:00
format: ['esm'],
2023-01-23 13:53:02 +00:00
entry: ['src/index.ts'],
minify: true,
2023-01-24 07:43:52 +00:00
splitting: true,
2023-01-23 13:53:02 +00:00
})