- Added detailed instructions for Plesk deployment in `.env.plesk` and `compose-plesk.yaml`. - Updated `.gitignore` to exclude Docker-related files. - Enhanced Dockerfiles for both frontend and backend to optimize for Plesk deployment. - Refined TypeScript configurations across various files for improved module resolution and compatibility. - Removed obsolete logger fixes summary file to streamline documentation.
17 lines
399 B
TypeScript
17 lines
399 B
TypeScript
// Export all shared types
|
|
export * from "./common";
|
|
export * from "./user";
|
|
export * from "./invoice";
|
|
export * from "./subscription";
|
|
export * from "./payment";
|
|
export * from "./case";
|
|
export * from "./order";
|
|
|
|
// Export constants and utilities
|
|
export * from "./status";
|
|
export * from "./validation";
|
|
export * from "./array-utils";
|
|
|
|
// Export single logger
|
|
export { logger, log } from "./logger";
|