-
Notifications
You must be signed in to change notification settings - Fork 976
/
jsdoc_conf.json
49 lines (49 loc) · 1.12 KB
/
jsdoc_conf.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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"source": {
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"node_modules/jsdoc/plugins/markdown"
],
"markdown":{
"idInHeadings": true
},
"opts": {
"template": "node_modules/docdash",
"encoding": "utf8",
"recurse": true,
"verbose": true
},
"templates": {
"cleverLinks": true,
"monospaceLinks": true
},
"docdash": {
"static": true,
"sort": true,
"search": true,
"collapse": true,
"typedefs": true,
"removeQuotes": "all",
"disqus": "",
"menu":{
"App Server":{
"href":"../app/index.html"
},
"API Server":{
"href":"../api/index.html"
},
"Browser side":{
"href":"../browser/index.html"
},
"API Reference":{
"href":"../apidoc/index.html"
}
}
}
}