forked from arjunkomath/node-freshdesk-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.jsdoc.rc
More file actions
37 lines (34 loc) · 708 Bytes
/
.jsdoc.rc
File metadata and controls
37 lines (34 loc) · 708 Bytes
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
{
"source": {
"include": [
"./lib"
]
},
"plugins": [
"plugins/markdown",
"plugins/summarize"
],
"templates": {
"cleverLinks": true,
"monospaceLinks": false
},
"opts": {
"template": "node_modules/docdash",
"encoding": "utf8",
"destination": "./docs/",
"recurse": true,
// "tutorials": "./tutorials/articles",
"readme": "./README.md",
"package": "./package.json", // commented, because it places doc to the /<PKG>/<VER>/folder
"private": true,
"pedantic": true,
"verbose": true
},
"markdown": {
"idInHeadings": true
},
"docdash": {
"static": true, // Display the static members inside the navbar
"sort": false // Sort the methods in the navbar
}
}