update tsconfig stable to import and run

This commit is contained in:
2024-11-30 11:59:16 +07:00
parent eb37c4967f
commit 6e2361166a
3 changed files with 25 additions and 6 deletions

View File

@ -5,5 +5,24 @@ import { UserActivity } from "./entity/user_activity";
import { UserRefreshToken } from "./entity/user_refresh_token";
import { User } from "./entity/users";
import { UserRole } from "./entity/users_roles";
import { ActivityType } from "./types/action";
import { ErrorType, ErrorValidation } from "./types/error";
import { Paging } from "./types/paging";
import { RoleList } from "./types/role";
import { Status } from "./types/status";
export { User, UserRole, UserActivity, UserRefreshToken, TrialBalance, LNKOLEK, CifAccount };
export {
User,
UserRole,
UserActivity,
UserRefreshToken,
TrialBalance,
LNKOLEK,
CifAccount,
ActivityType,
ErrorType,
ErrorValidation,
Paging,
RoleList,
Status
};