Assist_Design/packages/domain/tsconfig.json
barsa 2b183272cf Implement Notifications Feature and Enhance BFF Modules
- Introduced a new Notification model in the Prisma schema to manage in-app notifications for users.
- Integrated the NotificationsModule into the BFF application, allowing for the handling of notifications related to user actions and events.
- Updated the CatalogCdcSubscriber to create notifications for account eligibility and verification status changes, improving user engagement.
- Enhanced the CheckoutRegistrationService to create opportunities for SIM orders, integrating with the new notifications system.
- Refactored various modules to include the NotificationsModule, ensuring seamless interaction and notification handling across the application.
- Updated the frontend to display notification alerts in the AppShell header, enhancing user experience and accessibility.
2025-12-23 11:36:44 +09:00

36 lines
733 B
JSON

{
"extends": "../../tsconfig.node.json",
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": ".",
"sourceMap": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo"
},
"include": [
"auth/**/*",
"billing/**/*",
"catalog/**/*",
"checkout/**/*",
"common/**/*",
"customer/**/*",
"dashboard/**/*",
"mappings/**/*",
"notifications/**/*",
"opportunity/**/*",
"salesforce/**/*",
"orders/**/*",
"payments/**/*",
"providers/**/*",
"realtime/**/*",
"sim/**/*",
"subscriptions/**/*",
"support/**/*",
"toolkit/**/*",
"index.ts"
],
"exclude": ["node_modules", "dist"]
}