- Updated address retrieval in user service to replace billing info with a dedicated address method. - Adjusted API endpoints to use `PATCH /api/me/address` for address updates instead of billing updates. - Enhanced documentation to reflect changes in address management processes and API usage. - Removed deprecated types and services related to billing address handling, streamlining the codebase.
26 lines
690 B
JSON
26 lines
690 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@bff/core/*": ["src/core/*"],
|
|
"@bff/infra/*": ["src/infra/*"],
|
|
"@bff/modules/*": ["src/*"],
|
|
"@bff/integrations/*": ["src/integrations/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
|
|
"references": [{ "path": "../../packages/domain" }]
|
|
}
|