-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjsdoc.conf.json
38 lines (38 loc) · 943 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
{
"tags": {
"allowUnknownTags": true
},
"recurseDepth": 10,
"opts": {
"template": "node_modules/tui-jsdoc-template",
"destination": "./../ocs_web/docs",
"recurse": true
},
"source": {
"exclude": [
"node_modules",
"coverage",
"docs",
"logs",
"uploads"
],
"include":["README.md","./"]
},
"plugins": [],
"templates": {
"logo": {
"url": "https://vismaystudios.github.io/ocs/icon.png",
"width": "80px",
"height": "80px",
"link": "https://vismaystudios.github.io/ocs/"
},
"name": "OCS Docs",
"footerText": "Copyright 2017 (c) | Vismay Studios",
"useCollapsibles": true,
"cleverLinks": true,
"monospaceLinks": false,
"default": {
"outputSourceFiles": false
}
}
}