forked from KnodesCommunity/typedoc-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypedoc.js
32 lines (32 loc) · 980 Bytes
/
typedoc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
module.exports = {
name: 'Knodes TypeDoc Plugins',
out: 'docs',
entryPoints: [
'packages/*',
],
entryPointStrategy: 'packages',
pluginPages: {
pages: [
{ title: 'VIRTUAL', childrenDir: '../', children: [
{ title: 'Changelog', source: 'CHANGELOG.md' },
] },
{ title: '@knodes/typedoc-plugin-code-blocks', source: 'readme-extras.md', children: [
{ title: 'Using options', source: 'options.md' },
] },
{ title: '@knodes/typedoc-plugin-monorepo-readmes', children: [
{ title: 'Using options', source: 'options.md' },
] },
{ title: '@knodes/typedoc-plugin-pages', source: 'readme-extras.md', children: [
{ title: 'Using options', source: 'options.md' },
{ title: 'Pages tree', source: 'pages-tree.md' },
] },
{ title: '@knodes/typedoc-pluginutils', children: [
{ title: 'Providing options', source: 'providing-options.md' },
] },
],
},
pluginCodeBlocks: {
source: '__tests__/mock-fs',
},
excludePrivate: true,
};