-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.conf.json
40 lines (40 loc) · 946 Bytes
/
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
{
"plugins": ["plugins/markdown"],
"recurseDepth": 10,
"source": {
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_",
"include": [ "." ],
"exclude": [ "node_modules/" ]
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"opts": {
"template": "node_modules/clean-jsdoc-theme",
"readme": "README.md",
"destination": "docs"
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"search": true,
"better-docs": {
"name": "Yizack/gists-readme",
"title": "Yizack/gists-readme Documentation",
"hideGenerator": false,
"navLinks": [
{
"label": "Github",
"href": "https://github.com/Yizack/gists-readme"
},
{
"label": "Generate your card",
"href": "https://gists-readme.yizack.com/"
}
]
}
}
}