-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjsdoc.conf
35 lines (35 loc) · 1008 Bytes
/
jsdoc.conf
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
{
"opts": {
"template": "node_modules/tui-jsdoc-template",
"destination": "./docs/jsdoc/",
"encoding": "utf8",
"recurse": true,
"readme": "docs/srcdocs.md"
},
"sourceType": "script",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"source": {
"include": [ "../core/src" ],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": true,
"name": "Ranvier",
"logo": {
"url": "../_static/images/logo.png",
"width": "120px",
"height": "120px"
},
"css": [
"../assets/stylesheets/srcdocs.css",
"https://fonts.googleapis.com/css?family=Open+Sans|PT+Mono|Material+Icons|Fugaz+One"
],
"footerText": "Copyright © 2019, Shawn Biddle",
"readme": "docs/srcdocs.md"
}
}