bot/tsup.config.ts

10 lines
166 B
TypeScript
Raw Normal View History

2023-01-23 22:53:02 +09:00
import { defineConfig } from 'tsup'
export default defineConfig({
clean: true,
2023-01-24 16:43:52 +09:00
format: ['esm'],
2023-01-23 22:53:02 +09:00
entry: ['src/index.ts'],
minify: true,
2023-01-24 16:43:52 +09:00
splitting: true,
2023-01-23 22:53:02 +09:00
})