- 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.
13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
/**
|
|
* Toolkit - Validation
|
|
*
|
|
* Validation utilities for common data types.
|
|
*/
|
|
|
|
export * from "./email.js";
|
|
export * from "./url.js";
|
|
export * from "./string.js";
|
|
export * from "./helpers.js";
|
|
|
|
|