export function fileExists(fileName: string): boolean {
  try {
    const fileStat = fs.statSync(fileName);
    return fileStat.isFile();
  } catch {