export const loadTranslation = (projectRoot: string, translationFilePath: string): any => {
    const translationFileSrc = path.resolve(projectRoot, translationFilePath);

    if (!fs.existsSync(translationFileSrc)) {
        throw new Error(`Cannot load translation file ${translationFileSrc}`);