- Removed the domain mappings module, consolidating related types and schemas into the id-mappings feature. - Updated import paths across the BFF to reflect the new structure, ensuring compliance with import hygiene rules. - Cleaned up unused files and optimized the codebase for better maintainability and clarity.
41 lines
907 B
JSON
41 lines
907 B
JSON
{
|
|
"extends": "../../tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"#toolkit/*": ["./toolkit/*"],
|
|
"#internal/services/providers/salesforce": ["./services/providers/salesforce/index.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"auth/**/*",
|
|
"billing/**/*",
|
|
"services/**/*",
|
|
"checkout/**/*",
|
|
"common/**/*",
|
|
"customer/**/*",
|
|
"dashboard/**/*",
|
|
"mappings/**/*",
|
|
"notifications/**/*",
|
|
"opportunity/**/*",
|
|
"salesforce/**/*",
|
|
"orders/**/*",
|
|
"payments/**/*",
|
|
"providers/**/*",
|
|
"realtime/**/*",
|
|
"sim/**/*",
|
|
"subscriptions/**/*",
|
|
"support/**/*",
|
|
"toolkit/**/*",
|
|
"index.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|