import * as fs from "./fsLimit"; export async function readJSONFile(path: string): Promise { const contents = await fs.readFile(path, "utf8"); return JSON.parse(contents); }