Assist_Design/packages/domain/tsconfig.json
barsa d9734b0c82 Enhance Signup Workflow and Update Catalog Components
- Refactored the SignupWorkflowService to throw a DomainHttpException for legacy account conflicts, improving error handling.
- Updated the SignupForm component to include initialEmail and showFooterLinks props, enhancing user experience during account creation.
- Improved the AccountStep in the SignupForm to allow users to add optional details, such as date of birth and gender, for a more personalized signup process.
- Enhanced the PasswordStep to include terms acceptance and marketing consent options, ensuring compliance and user engagement.
- Updated various catalog views to improve layout and user guidance, streamlining the onboarding process for new users.
2025-12-22 18:59:38 +09:00

34 lines
684 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/**/*",
"opportunity/**/*",
"orders/**/*",
"payments/**/*",
"providers/**/*",
"realtime/**/*",
"sim/**/*",
"subscriptions/**/*",
"support/**/*",
"toolkit/**/*",
"index.ts"
],
"exclude": ["node_modules", "dist"]
}