-
Notifications
You must be signed in to change notification settings - Fork 2
/
jsdoc-conf.json
47 lines (47 loc) · 1.27 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
{
"plugins": [
"node_modules/plain-js-only-better-docs/category"
],
"recurseDepth": 10,
"source": {
"exclude": ["./node_modules/", "./logs/", "./docs/"],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"templates": {
"cleverLinks": true,
"monospaceLinks": true,
"search" : true,
"better-docs" : {
"name" : "Factotum Discord Bot Documentation",
"title" : "Factotum Documentation",
"css" : "jsdoc-styles.css",
"navLinks" : [
{
"label" : "Github",
"href" : "https://github.com/nwplus/Factotum"
}
]
},
"default" : {
"staticFiles" : {
"include" : [
"./jsdoc-styles.css"
]
}
}
},
"opts" : {
"destination" : "./docs/",
"recurse" : true,
"access" : "all",
"package" : "./package.json",
"readme" : "./README.md",
"template" : "./node_modules/plain-js-only-better-docs"
}
}