- Replaced UsersService with UsersFacade across various modules for improved abstraction and consistency. - Updated validation imports to utilize the new @customer-portal/validation package, enhancing modularity. - Removed deprecated validation files and streamlined user-related logic in controllers and services. - Enhanced order processing by integrating field mappings for Salesforce orders, improving maintainability. - Improved error handling and response structures in authentication and user management workflows.
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
// NestJS specific settings
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
|
|
// Path mappings for clean imports
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@bff/core/*": ["src/core/*"],
|
|
"@bff/infra/*": ["src/infra/*"],
|
|
"@bff/modules/*": ["src/modules/*"],
|
|
"@bff/integrations/*": ["src/integrations/*"],
|
|
"@customer-portal/validation": ["../../packages/validation/dist/index"],
|
|
"@customer-portal/validation/*": ["../../packages/validation/dist/*"]
|
|
},
|
|
"rootDirs": [
|
|
"src",
|
|
"../../packages/validation/dist",
|
|
"../../packages/validation/src"
|
|
],
|
|
|
|
// Type checking
|
|
"noEmit": true,
|
|
"types": ["node"],
|
|
"typeRoots": ["./node_modules/@types"]
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "commonjs"
|
|
}
|
|
},
|
|
"include": ["src/**/*", "scripts/**/*", "test/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|