BOSS/tsup.config.ts
2025-09-03 22:20:50 +02:00

11 lines
204 B
TypeScript

import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/server.ts', 'src/cli/cli.ts'],
splitting: false,
sourcemap: true,
platform: 'node',
clean: true,
format: ['cjs']
});