We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31ce095 commit fe869d7Copy full SHA for fe869d7
packages/mcp-server/scripts/generate-summaries.ts
@@ -95,7 +95,7 @@ async function load_existing_summaries(output_path: string): Promise<SummaryData
95
}
96
97
try {
98
- const content = await readFile(output_path, 'utf-8');
+ const content = (await readFile(output_path, 'utf-8')) as string;
99
const data = JSON.parse(content);
100
const validated = v.safeParse(summary_data_schema, data);
101
0 commit comments