forked from melonjs/melonJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsdoc_conf.json
44 lines (44 loc) · 1.24 KB
/
jsdoc_conf.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
38
39
40
41
42
43
44
{
"templates": {
"systemName": "melonJS",
"copyright": "Copyright © 2011 - 2021 Olivier Biot",
"cleverLinks": true,
"monospaceLinks": false,
"default" : {
"outputSourcePath": false,
"outputSourceFiles": false
},
"useCollapsibles": true,
"logo": {
"url": "./images/melonjs-logo.png",
"width": "125px",
"height": "125px",
"link": "index.html"
},
"name": "melonJS API documentation",
"css" : ["styles/melonjs-doc.css", "styles/prettify-tomorrow-night-eighties.css"],
"footerText": " "
},
"plugins": ["plugins/markdown"],
"markdown": {
"parser": "gfm",
"hardwrap": false
},
"tags": {
"allowUnknownTags": false,
"dictionaries": ["jsdoc","closure"]
},
"source": {
"include": ["./README.md", "./src/"],
"exclude": [],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"opts": {
"encoding" : "utf8",
"recurse" : true,
"lenient" : false,
"destination" : "docs",
"template" : "tasks/jsdoc-template"
}
}