import { supportedLanguages } from "."; const enTranslations = () => import("./lang/en"); export const languageMapping = () => { const mapping: Record = {}; for (const language of supportedLanguages) { mapping[language] = () => import(`./lang/${language}`) as ReturnType; } return mapping as Record< (typeof supportedLanguages)[number], () => ReturnType >; };