diff --git a/.gitignore b/.gitignore index 4690b14d1..405a73232 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +# Temporary files +tmp/ + # Logs logs *.log diff --git a/typedoc.config.mjs b/typedoc.config.mjs index ec5ad5b7d..33fe9e267 100644 --- a/typedoc.config.mjs +++ b/typedoc.config.mjs @@ -22,6 +22,7 @@ console.log( publicPackages.map(p => p.manifest.name) ); +/** @type {Partial} */ export default { name: 'MCP TypeScript SDK', entryPointStrategy: 'packages', @@ -36,5 +37,6 @@ export default { }, headings: { readme: false - } + }, + out: 'tmp/docs/', };