-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjsdoc_conf.json
More file actions
40 lines (40 loc) · 1.06 KB
/
jsdoc_conf.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"opts": {
"template": "./node_modules/tui-jsdoc-template",
"encoding": "utf8",
"destination": "./docs/api",
"recurse": true,
"package": "package.json"
},
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"source": {
"include": [ "./src" ],
"exclude": ["./webpack.config.js", "cli.js"],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": ["plugins/markdown"],
"markdown": {
"parser": "gfm",
"hardwrap": true
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"default": {
"includeDate": true,
"layoutFile": "./docs_editor/template/layout.tmpl"
},
"name": "Sensorium API",
"footerText": "Makeblock Team",
"logo": {
"url": "../statics/makeblocklogo.png",
"width": "154px",
"height": "24px",
"link": "http://makeblock.com/"
}
}
}