-
Notifications
You must be signed in to change notification settings - Fork 58
/
jsdoc.conf.json
57 lines (57 loc) · 1.13 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
55
56
57
{
"source": {
"include": ["src"],
"exclude": [],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"opts": {
"encoding": "utf8",
"destination": "./docs/",
"recurse": true,
"template": "./node_modules/docdash",
"readme": "./README.md",
"tutorials": "./docs-src/tutorials/"
},
"tags": {
"allowUnknownTags": true
},
"plugins": [
"plugins/markdown",
"node_modules/jsdoc-escape-at"
],
"templates": {
"cleverLinks": false
},
"markdown": {
"parser": "gfm",
"hardwrap": true
},
"docdash": {
"static": true,
"sort": true,
"sectionOrder": [
"Tutorials",
"Classes",
"Modules",
"Externals",
"Events",
"Namespaces",
"Mixins",
"Interfaces"
],
"search" : true,
"collapse" : false,
"wrap" : true,
"typedefs" : true,
"navLevel" : 5,
"menu": {
"GitHub repo": {
"href":"https://github.com/zhuanzhuanfe/fancy-mini",
"target":"_blank",
"class":"menu-item",
"id":"website_link"
}
}
}
}