-
Notifications
You must be signed in to change notification settings - Fork 14
/
esdoc.json
44 lines (44 loc) · 1.34 KB
/
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
38
39
40
41
42
43
44
{
"source": "./docs/jsFromTs/src",
"destination": "./docs",
"includes": [".*Facade\\.js", ".*index\\.common\\.doc\\.js"],
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"accessor": { "access": ["public", "protected", "private"], "autoPrivate": false },
"undocumentIdentifier": { "enable": false },
"unexportedIdentifier": { "enable": true },
"typeInference": { "enable": false },
"brand": {
"logo": "./manual/asset/logo_favicon.jpg",
"title": "Netflux",
"description": "Abstract peer to peer client transport API. Implementations based on WebRTC and webSocket to be done.",
"repository": "https://github.com/coast-team/netflux"
},
"manual": {
"globalIndex": true,
"asset": "./manual/asset",
"files": [
"./manual/installation.md",
"./manual/usage.md",
"./manual/knownobstacles.md",
"./manual/faq.md"
]
},
"test": {
"source": "./docs/jsFromTs/test/",
"interfaces": ["describe", "it"],
"includes": ["(spec|Spec|test|Test)\\.js$"]
}
}
},
{
"name": "esdoc-inject-style-plugin",
"option": {
"enable": true,
"styles": ["./manual/style.css"]
}
}
]
}