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