- Added a new script to check domain imports, promoting better import hygiene across the codebase. - Refactored multiple domain index files to remove unnecessary type re-exports, streamlining the module structure. - Expanded documentation on import patterns and validation processes to provide clearer guidance for developers. - Included an architecture diagram to illustrate the relationships between the Portal, BFF, and Domain packages.
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
/**
|
|
* ID Mapping Domain
|
|
*/
|
|
|
|
export * from "./contract.js";
|
|
export * from "./schema.js";
|
|
export * from "./validation.js";
|