- Changed TypeScript target and library settings in tsconfig files to align with ESNext standards. - Updated pnpm version in GitHub workflows for better dependency management. - Modified Dockerfile to reflect the updated pnpm version. - Adjusted import statements across various domain modules to include file extensions for consistency and compatibility. - Cleaned up TypeScript configuration files for improved clarity and organization.
20 lines
736 B
TypeScript
20 lines
736 B
TypeScript
/**
|
|
* @customer-portal/domain
|
|
* Unified domain package with Provider-Aware Structure.
|
|
*/
|
|
|
|
// Re-export domain modules
|
|
export * as Billing from "./billing/index.js";
|
|
export * as Subscriptions from "./subscriptions/index.js";
|
|
export * as Payments from "./payments/index.js";
|
|
export * as Sim from "./sim/index.js";
|
|
export * as Support from "./support/index.js";
|
|
export * as Orders from "./orders/index.js";
|
|
export * as Catalog from "./catalog/index.js";
|
|
export * as Common from "./common/index.js";
|
|
export * as Toolkit from "./toolkit/index.js";
|
|
export * as Auth from "./auth/index.js";
|
|
export * as Customer from "./customer/index.js";
|
|
export * as Mappings from "./mappings/index.js";
|
|
export * as Dashboard from "./dashboard/index.js";
|