-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedoc.cjs
41 lines (40 loc) · 1.1 KB
/
typedoc.cjs
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
33
34
35
36
37
38
39
40
41
// This is the configuration file for typedoc to know how to generate
// the documentation
/** @type {import('../../../src').IPluginOptions} */
module.exports = {
entryPoints: [
"./src/interface/index.ts",
"./src/operators/index.ts",
"./src/util/index.ts",
"./src/index.ts",
"./src/peer/index.ts",
],
tsconfig: "./tsconfig.prod.json",
// the typedoc-plugin-pages can add more pages to the output
// besides README.md, and the comments in your source code files
pluginPages: {
pages: [
{
name: "Change Log",
source: "./CHANGELOG.md",
// children: [
// { title: 'Configuration', source: 'configuration.md' },
// ],
},
{
name: "Roadmap",
source: "./ROADMAP.md",
// children: [
// { title: 'Configuration', source: 'configuration.md' },
// ],
},
// {
// title: 'Additional resources',
// childrenDir: 'additional-resources',
// children: [
// { title: 'Some cool docs', source: 'some-cool-docs.md' },
// ]
// },
],
},
};