postiz-app/apps/cli/tsup.config.ts
2026-02-13 22:41:21 +07:00

14 lines
299 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs'],
dts: false, // Disable DTS generation to avoid type issues
splitting: false,
sourcemap: true,
clean: true,
outDir: 'dist',
banner: {
js: '#!/usr/bin/env node',
},
});