- Update package.json dependencies across multiple packages - Update pnpm-lock.yaml - Update pnpm-workspace.yaml - Update tsup.config.ts for queue-infrastructure - Update @types exports and tsconfig 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
377 B
TypeScript
17 lines
377 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
format: ['cjs', 'esm'],
|
|
dts: false, // Disabled: tsup DTS can't resolve @lilith/queue subpaths
|
|
clean: true,
|
|
sourcemap: true,
|
|
external: [
|
|
'@nestjs/common',
|
|
'@nestjs/core',
|
|
'@nestjs/config',
|
|
'@lilith/queue',
|
|
/^@lilith\/queue\/.*/,
|
|
'bullmq',
|
|
],
|
|
});
|