From 2cb44a6c7515d3fa4a7c753f4135b961145021d5 Mon Sep 17 00:00:00 2001 From: Ritesh Ghosh Date: Wed, 22 Nov 2023 13:48:50 +0530 Subject: [PATCH] fix(ts): add strict file imports --- src/utils/index.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index 7a1cf31..42492ef 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -6,8 +6,7 @@ import { SRC_SEARCH_URL, USER_AGENT_HEADER, ACCEPT_ENCODING_HEADER, -} from "./constants"; - +} from "./constants.js"; import { extractAnimes, substringAfter, @@ -15,7 +14,7 @@ import { retrieveServerId, extractTop10Animes, extractMostPopularAnimes, -} from "./methods"; +} from "./methods.js"; export { SRC_AJAX_URL,