Update all package.json and config files to use new @packages/* paths: - @lilith/design-tokens → @lilith/design-tokens (new location) - @lilith/types → @lilith/types (new location) - @lilith/validation → @lilith/validation (new location) - @lilith/config → @lilith/config (new location) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
354 B
TypeScript
18 lines
354 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',
|
|
'@lilith/queue-core',
|
|
'@lilith/queue-nestjs',
|
|
'@lilith/queue-reporting',
|
|
'bullmq',
|
|
],
|
|
});
|