mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 20:21:09 +02:00
NestJS notification microservice for email, push, Matrix, and webhook notifications across all ManaCore apps. Features: - Multi-channel delivery (email, push, Matrix, webhook) - Handlebars template engine with defaults - User notification preferences - BullMQ async job processing - Delivery tracking and logging - Prometheus metrics Includes @manacore/notify-client package for NestJS integration.
15 lines
308 B
TypeScript
15 lines
308 B
TypeScript
/* eslint-disable */
|
|
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: {
|
|
index: 'src/index.ts',
|
|
'nestjs/index': 'src/nestjs/index.ts',
|
|
},
|
|
format: ['cjs', 'esm'],
|
|
dts: true,
|
|
clean: true,
|
|
splitting: false,
|
|
sourcemap: true,
|
|
external: ['@nestjs/common', '@nestjs/core'],
|
|
});
|