-
Notifications
You must be signed in to change notification settings - Fork 168
/
jsdoc.conf.json
53 lines (53 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
{
"opts": {
"destination": "./docs_out/",
"encoding": "utf8",
"readme": "docs/introduction.md",
"template": "node_modules/lance-docs-template",
"tutorials": "./docs"
},
"sourceType": "module",
"source": {
"include": [
"src/ServerEngine.js",
"src/ClientEngine.js",
"src/GameEngine.js",
"src/GameWorld.js",
"src/controls/KeyboardControls.js",
"src/physics/SimplePhysicsEngine.js",
"src/physics/CannonPhysicsEngine.js",
"src/serialize/BaseTypes.js",
"src/serialize/GameObject.js",
"src/serialize/DynamicObject.js",
"src/serialize/Serializer.js",
"src/serialize/Serializable.js",
"src/serialize/PhysicalObject2D.js",
"src/serialize/PhysicalObject3D.js",
"src/serialize/TwoVector.js",
"src/serialize/ThreeVector.js",
"src/serialize/Quaternion.js",
"src/render/Renderer.js",
"src/render/AFrameRenderer.js",
"src/lib/Trace.js"
]
},
"plugins": [
"plugins/markdown"
],
"templates": {
"systemName" : "Lance",
"copyright" : "Lance Copyright © 2017 The contributors to the Lance project.",
"includeDate" : true,
"navType" : "vertical",
"theme" : "spacelab",
"linenums" : false,
"collapseSymbols" : true,
"inverseNav" : false,
"outputSourceFiles" : false,
"outputSourcePath" : false,
"dateFormat" : "ddd MMM Do YYYY",
"syntaxTheme" : "default",
"sort" : false,
"search" : true
}
}