- 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.
36 lines
733 B
JSON
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"]
|
|
}
|