forked from Antriel/phaser3-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsdoc.conf.json
61 lines (61 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"tags": {
"allowUnknownTags": true
},
"markdown": {
"parser" : "gfm",
"hardwrap" : false
},
"source": {
"include": [
"../phaser/src/",
"../phaser/plugins/fbinstant/src",
"../phaser/plugins/camera3d/src",
"../phaser/plugins/spine/src"
],
"exclude": [
"../phaser/plugins/spine/src/runtimes",
"../phaser/src/phaser-arcade-physics.js",
"../phaser/src/phaser-core.js",
"../phaser/src/physics/matter-js/poly-decomp/",
"../phaser/src/physics/matter-js/lib",
"../phaser/src/polyfills"
],
"includePattern": ".+\\.js?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"plugins/markdown",
"jsdoc-plugins/typedef",
"jsdoc-plugins/this"
],
"templates": {
"version": "v3.19.0",
"systemName": "Phaser",
"logoFile": "img/phaser3-logo-nav.png",
"systemSummary": "HTML5 Game Framework",
"systemColor": "#0f0019",
"copyright": "Phaser Copyright © 2019 Photon Storm Ltd and the contributors to the Phaser projects.",
"linenums": true,
"inlineNav": true,
"includeDate": true,
"collapseSymbols": false,
"methodHeadingReturns": false,
"sort": "longname, version, since",
"theme": "cerulean",
"outputSourceFiles": false,
"outputSourcePath": true,
"dateFormat": "MMMM Do YYYY, h:mm:ss a",
"analytics": { "ua": "UA-44006568-1", "domain": "phaser.io" }
},
"opts": {
"debug": false,
"destination": "./out/",
"encoding": "utf8",
"recurse": true,
"private": false,
"lenient": true,
"sourceType": "script",
"template": "template"
}
}