import * as fs from "node:fs/promises"; export async function fileExists(filePath: string): Promise { try { await fs.access(filePath); return true; } catch { return false; } }