-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtypedoc.config.cjs
More file actions
30 lines (30 loc) 路 831 Bytes
/
Copy pathtypedoc.config.cjs
File metadata and controls
30 lines (30 loc) 路 831 Bytes
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
/** @type {import('typedoc').TypeDocOptions} */
module.exports = {
// entryPoints: ["./src/index.ts", "./src/secondary-entry.ts"],
// out: "doc",
entryPointStrategy: 'packages',
entryPoints: ['nanopub-display', 'nanopub-utils'],
out: 'docs-dist',
exclude: ['**/*.spec.ts'],
visibilityFilters: {
protected: true,
private: true,
inherited: false,
external: true
},
navigationLinks: {
'鉁掞笍 Contribute': '/nanopub-display/pages/CONTRIBUTING.html',
'馃浉 GitHub': 'https://github.com/vemonet/nanopub-display'
},
customCss: 'docs/style.css',
// https://knodescommunity.github.io/typedoc-plugins/_knodes_typedoc_plugin_pages/pages/pages-tree.html
pluginPages: {
source: '.',
pages: [
{
title: 'Contributing',
source: 'CONTRIBUTING.md'
}
]
}
}