- Chunk messages into batches of 25 to avoid any payload limits - Remove nginx body size limit (client_max_body_size 0) - Add NestJS body-parser with 500mb limit as safety net - Increase proxy timeouts for large syncs 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
375 B
TypeScript
18 lines
375 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['cjs', 'esm'],
|
|
dts: true,
|
|
clean: true,
|
|
sourcemap: true,
|
|
external: [
|
|
'@nestjs/common',
|
|
'@nestjs/core',
|
|
'@nestjs/config',
|
|
'@transquinnftw/queue-core',
|
|
'@transquinnftw/queue-nestjs',
|
|
'@transquinnftw/queue-reporting',
|
|
'bullmq',
|
|
],
|
|
});
|