- 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.
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
/**
|
|
* Toolkit - Formatting
|
|
*
|
|
* Formatting utilities for currency, dates, phone numbers, etc.
|
|
*/
|
|
|
|
export * from "./currency.js";
|
|
export * from "./date.js";
|
|
export * from "./phone.js";
|
|
export * from "./text.js";
|
|
|