We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tmp/docs/
1 parent 44d9132 commit 7e80df6Copy full SHA for 7e80df6
.gitignore
@@ -1,3 +1,6 @@
1
+# Temporary files
2
+tmp/
3
+
4
# Logs
5
logs
6
*.log
typedoc.config.mjs
@@ -22,6 +22,7 @@ console.log(
22
publicPackages.map(p => p.manifest.name)
23
);
24
25
+/** @type {Partial<import("typedoc").TypeDocOptions>} */
26
export default {
27
name: 'MCP TypeScript SDK',
28
entryPointStrategy: 'packages',
@@ -36,5 +37,6 @@ export default {
36
37
},
38
headings: {
39
readme: false
- }
40
+ },
41
+ out: 'tmp/docs/',
42
};
0 commit comments