diff --git a/tsup.config.ts b/tsup.config.ts index d85148b..d7a93f3 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -3,7 +3,7 @@ import { defineConfig } from 'tsup' export default defineConfig({ clean: true, format: ['cjs'], - entry: ['src/index.ts'], + entry: ['src/index.ts', 'src/Commands/*.ts'], minify: true, splitting: true, })