refactor: remove .js extensions from all imports

This commit is contained in:
2026-04-06 15:10:22 +02:00
parent a22c9bdaed
commit d06b900e7c
64 changed files with 177 additions and 161 deletions

View File

@@ -1,6 +1,6 @@
import type { Cookie } from "@/entities/models/cookie.js";
import type { Session } from "@/entities/models/session.js";
import type { User } from "@/entities/models/user.js";
import type { Cookie } from "@/entities/models/cookie";
import type { Session } from "@/entities/models/session";
import type { User } from "@/entities/models/user";
export interface IAuthenticationService {
generateUserId(): string;