-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.json
58 lines (58 loc) · 1.63 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
55
56
57
58
{
"tags": {
"allowUnknownTags": true
},
"recurseDepth": 10,
"source": {
"include": ["./src" ],
"includePattern" : ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"node_modules/better-docs/typescript",
"plugins/markdown",
"plugins/summarize",
"jsdoc-mermaid",
"better-docs/component",
"node_modules/better-docs/category"
],
"opts": {
"encoding": "utf8",
"destination": "docs/",
"recurse": true,
"verbose": true,
"template": "./node_modules/better-docs",
"readme": "./README.md",
"package": "./package.json",
"tutorials": "./docs_src/tutorials"
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"search": true,
"default": {
"staticFiles": {
"include": [
"./docs_src/static"
]
}
},
"better-docs": {
"name": "Brentlab Rnaseq Database Frontend Documentation",
"title": "Brentlab Rnaseq Database Frontend Documentation",
"css": "./docs_src/style.css",
"trackingCode": "tracking-code-which-will-go-to-the-HEAD",
"hideGenerator": false,
"navLinks": [
{
"label": "Github",
"href": "https://github.com/BrentLab/rnaseq_metadata_frontend"
},
{
"label": "Example Deployment",
"href": "http://18.116.65.9"
}
]
}
}
}