import {readFile} from 'node:fs/promises' export async function readJson(filePath: string): Promise { const file = await readFile(filePath, 'utf8') return JSON.parse(file) as T }