-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.conf.json
54 lines (54 loc) · 1.03 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
50
51
52
53
54
{
"tags":{
"allowUnknownTags":true
},
"plugins":[
"eventDumper",
"markdown"
],
"source":{
"excludePattern":"(^|\\/|\\\\)_",
"exclude":[
"node_modules",
"scripts"
],
"include":[
"src"
],
"includePattern":".+\\.js(doc|x)?$"
},
"templates":{
"cleverLinks":true,
"monospaceLinks":true,
"dateFormat":"ddd MMM Do YYYY",
"outputSourceFiles":false,
"outputSourcePath":false,
"systemName":"j1tt3r",
"footer":"",
"copyright":"© 2018-2021 j1tt3r.net",
"theme":"j1tt3r",
"linenums":true,
"collapseSymbols":false,
"inverseNav":false,
"highlightTutorialCode":true,
"protocol":"html://"
},
"markdown":{
"parser":"gfm"
},
"opts":{
"tutorials":"docs",
"recurse":true,
"pedantic":true,
"readme":"README.md",
"encoding":"utf8",
"access":"all",
"debug":false,
"destination":"docs",
"package":".",
"template":"templates/default",
"test":false
},
"sourceType":"module",
"recurseDepth":10
}