-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjsdoc.config.json
46 lines (46 loc) · 1.31 KB
/
jsdoc.config.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
45
46
{
"opts": {
"template": "./node_modules/ink-docstrap/template",
"encoding": "utf8",
"destination": "./docs/",
"recurse": true,
"tutorials": "./tutorials"
},
"plugins": [
"plugins/markdown",
"plugins/summarize",
"plugins/commentConvert",
"plugins/overloadHelper",
"plugins/underscore"
],
"recurseDepth": 10,
"source": {
"include": ["./src/"],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"sourceType": "script",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"templates": {
"cleverLinks" : false,
"monospaceLinks" : true,
"systemName" : "Phaser 3 Webpack ES6 Project Template",
"footer" : "",
"copyright" : "Design1Online.com, LLC",
"includeDate" : "true",
"navType" : "vertical",
"theme" : "united",
"linenums" : "true",
"collapseSymbols" : "true",
"inverseNav" : "false",
"outputSourceFiles" : "true" ,
"outputSourcePath" : "false",
"dateFormat" : "dddd, MMMM Do YYYY, h:mm:ss a",
"syntaxTheme" : "dark",
"sort" : "true",
"search" : "true"
}
}