Installing & Running the script
npm i -D jsdoc-to-mdx# oryarn add -D jsdoc-to-mdxThis will install jsdoc-to-mdx in your node_modules binary, so you can execute it like:
npx jsdoc-to-mdx -c config.jsonOr, you can execute in "scripts" in package.json
"scripts": { "docs": "jsdoc-to-mdx -c config.json"}npm run docs