-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtypedoc.config.json
48 lines (48 loc) · 1.17 KB
/
typedoc.config.json
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
42
43
44
45
46
47
48
{
"entryPoints": [
"./src/index.ts"
],
"out": "./docs",
"entryPointStrategy": "resolve",
"name": "node-iproute",
"includeVersion": true,
"theme": "default",
"cacheBust": true,
"hideParameterTypesInTitle": false,
"searchInComments": false,
"cleanOutputDir": true,
"excludeInternal": false,
"treatWarningsAsErrors": false,
"navigationLinks": {
"npm": "https://npmjs.com/iproute",
"Github": "https://github.com/diosney/node-iproute",
"Donate": "https://ko-fi.com/diosney"
},
"sidebarLinks": {
"Home": "/node-iproute",
"Examples": "https://github.com/diosney/node-iproute/blob/master/EXAMPLES.md",
"TODO": "https://github.com/diosney/node-iproute/blob/master/TODO.md",
"Changelog": "https://github.com/diosney/node-iproute/blob/master/CHANGELOG.md"
},
"navigation": {
"includeCategories": true,
"includeGroups": false
},
"visibilityFilters": {
"protected": true,
"private": true,
"inherited": true,
"external": true
},
"defaultCategory": "Misc",
"categoryOrder": [
"IP Commands",
"Errors",
"Constants",
"Interfaces",
"Schemas",
"Classes",
"Regexes",
"Misc"
]
}