diff --git a/packages/opencode/src/util/filesystem.ts b/packages/opencode/src/util/filesystem.ts index 5c63af030..d2f22be52 100644 --- a/packages/opencode/src/util/filesystem.ts +++ b/packages/opencode/src/util/filesystem.ts @@ -30,7 +30,7 @@ export namespace Filesystem { return readFile(p, "utf-8") } - export async function readJson(p: string): Promise { + export async function readJson(p: string): Promise { return JSON.parse(await readFile(p, "utf-8")) }