-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtypedoc.json
More file actions
37 lines (37 loc) · 1.07 KB
/
typedoc.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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
{
"$schema": "https://typedoc.org/schema.json",
"readme": "./README.md",
"projectDocuments": ["documentation/howto.md"],
"navigationLinks": {
"Examples": "https://anatomicmaps.github.io/flatmap-viewer/documents/HowTo_Guide.html",
"API": "https://anatomicmaps.github.io/flatmap-viewer/modules/index.html",
"GitHub": "https://github.com/AnatomicMaps/flatmap-viewer"
},
"plugin": [
"typedoc-plugin-missing-exports",
"typedoc-github-theme"
],
"includeVersion": true,
"entryPoints": ["./lib/index.ts"],
"entryPointStrategy": "expand",
"excludeExternals": true,
"excludeNotDocumented": false,
"excludePrivate": true,
"out": "./docs",
"customCss": "./static/docs/custom.css",
"hideGenerator": true,
"navigation": {
"includeCategories": true,
"includeGroups": true,
"includeFolders": true
},
"sort": [
"visibility",
"static-first",
"alphabetical"
],
"categorizeByGroup": false,
"searchGroupBoosts": {
"Classes": 1.5
}
}