- 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.
27 lines
554 B
JSON
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"]
|
|
}
|