diff --git a/scripts/generate-plugin-inventory-doc.mjs b/scripts/generate-plugin-inventory-doc.mjs index 93bbbfe6102..cb9efda5ae6 100644 --- a/scripts/generate-plugin-inventory-doc.mjs +++ b/scripts/generate-plugin-inventory-doc.mjs @@ -28,7 +28,8 @@ const PLUGIN_DOC_ALIASES = new Map([ ["tavily", "/tools/tavily"], ["tokenjuice", "/tools/tokenjuice"], ]); -const PLUGIN_REFERENCE_EXTRA_SECTIONS = new Map([]); +/** @type {Map} */ +const PLUGIN_REFERENCE_EXTRA_SECTIONS = new Map(); function readJson(relativePath) { return JSON.parse(fs.readFileSync(path.join(ROOT, relativePath), "utf8"));