-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.json
More file actions
50 lines (50 loc) · 1.01 KB
/
jsdoc.json
File metadata and controls
50 lines (50 loc) · 1.01 KB
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
{
"tags": {
"allowUnknownTags": true
},
"sourceType": "module",
"source": {
"include": ["./src/"],
"includePattern": "\\.js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown",
"plugins/underscore"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": true,
"systemName": "@norjs/backend",
"footer": "Created by Sendanor",
"copyright": "2017",
"navType": "vertical",
"theme": "spacelab",
"linenums": true,
"collapseSymbols": true,
"inverseNav": false,
"default": {
"outputSourceFiles": true,
"includeDate": false
}
},
"opts": {
"template": "node_modules/docdash",
"encoding": "utf8",
"destination": "docs",
"readme": "./README.md",
"tutorials": "./tutorials",
"package": "./package.json",
"recurse": true,
"verbose": false,
"private": false
},
"docdash": {
"static": false,
"sort": true
},
"markdown": {
"parser": "gfm",
"hardwrap": true
}
}