Assist_Design/packages/domain/tsconfig.json
barsa 0a3d5b1e3c Refactor WHMCS service methods and improve type handling
- Updated WHMCS service methods to return normalized product types, enhancing type consistency across services.
- Refactored product retrieval logic in WhmcsPaymentService and WhmcsService to streamline data handling.
- Removed deprecated utility functions and optimized custom field handling in WHMCS-related services.
- Enhanced error handling in subscription processing to improve reliability and clarity.
- Cleaned up imports and improved overall code organization for better maintainability.
2025-10-29 18:59:17 +09:00

27 lines
554 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "./dist",
"rootDir": ".",
"tsBuildInfoFile": "./dist/.tsbuildinfo"
},
"include": [
"auth/**/*",
"billing/**/*",
"catalog/**/*",
"common/**/*",
"customer/**/*",
"dashboard/**/*",
"providers/**/*",
"mappings/**/*",
"orders/**/*",
"payments/**/*",
"sim/**/*",
"subscriptions/**/*",
"toolkit/**/*",
"index.ts"
],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
}