-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjsdoc.json
37 lines (37 loc) · 998 Bytes
/
jsdoc.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
{
"source": {
"excludePattern":"\\.spec*"
, "include": [
"./packages/skyring/README.md"
, "./packages/skyring/index.js"
, "./packages/skyring/lib"
, "./packages/skyring/conf"
, "./packages/skyring/node_modules/keef/index.js"
]
, "exclude": ["/**/test/", "./**/node_modules/", "./packages/skyring/lib/server/api/"]
}
, "tags": {
"allowUnknownTags": true
}
, "opts": {
"recurse": true
, "template": "node_modules/ink-docstrap/template"
, "destination": "docs"
, "tutorials": "tutorials"
}
, "plugins": [
"plugins/markdown"
, "plugins/partial"
]
, "markdown": {"parser":"gfm", "hardwrap":false}
, "templates": {
"systemName" : "Skyring"
, "syntaxTheme" : "dark"
, "copyright" : "Eric Satterwhite © 2020"
, "theme" : "slate"
, "outputSourceFiles" : true
, "outputSourcePath" : true
, "highlightTutorialCode" : true
, "linenums" : false
}
}