Skip to content

Commit 7e80df6

Browse files
fix: output TypeDoc to tmp/docs/ by default (#1482)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 44d9132 commit 7e80df6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Temporary files
2+
tmp/
3+
14
# Logs
25
logs
36
*.log

typedoc.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ console.log(
2222
publicPackages.map(p => p.manifest.name)
2323
);
2424

25+
/** @type {Partial<import("typedoc").TypeDocOptions>} */
2526
export default {
2627
name: 'MCP TypeScript SDK',
2728
entryPointStrategy: 'packages',
@@ -36,5 +37,6 @@ export default {
3637
},
3738
headings: {
3839
readme: false
39-
}
40+
},
41+
out: 'tmp/docs/',
4042
};

0 commit comments

Comments
 (0)