-
Notifications
You must be signed in to change notification settings - Fork 74
/
jsdoc.json
54 lines (54 loc) · 1.42 KB
/
jsdoc.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
49
50
51
52
53
54
{
"tags": {
"allowUnknownTags":true
},
"recurseDepth": 3,
"source": {
"include": ["./src"],
"includePattern": ".+\\.ts$",
"exclude": ["./docs"],
"excludePattern": "(node_modules/|docs|types|plastics|wsproxy|lib|plugins)"
},
"plugins": [
"plugins/markdown",
"plugins/summarize",
"node_modules/better-docs/typescript",
"node_modules/better-docs/category"
],
"opts": {
"template": "node_modules/better-docs",
"encoding": "utf8",
"destination": "./docs",
"recurse": true,
"verbose": true
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"search": true,
"default": {
"outputSourceFiles": false
},
"better-docs": {
"name": "Backend.AI Web UI Documentation",
"title": "<h1>Backend.AI Web UI</h1>",
"css": "style.css",
"trackingCode": "tracking-code-which-will-go-to-the-HEAD",
"hideGenerator": true,
"navLinks": [
{
"label": "GitHub (WebUI)",
"href": "https://github.com/lablup/backend.ai-webui"
},
{
"label": "GitHub (project)",
"href": "https://github.com/lablup/backend.ai"
},
{
"label": "Cloud",
"href": "https://cloud.backend.ai"
}
]
}
}
}