// load this module before other modules which require these global variables import { loadSuml } from './loader.ts'; import type { Config } from '../locale/config.ts'; import type { Translations } from '../locale/translations.ts'; global.config = loadSuml('config') as Config; global.translations = loadSuml('translations') as Translations;