import path from "path"; export function getWordFilePath(word: string, outputDir: string): string { return path.join(outputDir, `${word}.json`); }