-
Notifications
You must be signed in to change notification settings - Fork 3
/
.esdoc.json
37 lines (36 loc) · 947 Bytes
/
.esdoc.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
{
"source": "./src",
"destination": "./docs/api",
"includes": [ "\\.js$" ],
"excludes": [ "\\.experiment.js$" ],
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"undocumentIdentifier": {"enable": false},
"unexportedIdentifier": {"enable": true},
"brand": {
"title": "MEP Master",
"logo": "./docs/assets/logo.jpg",
"site": "https://memristor-robotics.github.io/",
"repository": "https://github.com/Memristor-Robotics/mep-master.git"
},
"manual": {
"globalIndex": true,
"index": "README.md",
"files": [
"./docs/Introduction.md",
"./docs/Source_Roadmap.md",
"./docs/Log.md",
"./docs/Goals.md",
"./docs/Telemetry.md"
]
},
"test": {
"type": "mocha",
"source": "test"
}
}
}
]
}