-
Notifications
You must be signed in to change notification settings - Fork 0
/
.esdoc.json
28 lines (28 loc) · 908 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
{
"source": "./src",
"destination": "./doc",
"plugins": [
{"name": "esdoc-publish-html-plugin"},
{"name": "esdoc-jsx-plugin", "option": {"enable": true}},
{"name": "esdoc-ecmascript-proposal-plugin", "option": {"all": true}},
{
"name": "esdoc-standard-plugin",
"option": {
"lint": {"enable": true},
"coverage": {"enable": true},
"accessor": {"access": ["public", "protected", "private"], "autoPrivate": false},
"undocumentIdentifier": {"enable": true},
"unexportedIdentifier": {"enable": true},
"typeInference": {"enable": true},
"brand": {
"logo": "./src/assets/logo.png",
"title": "Title",
"description": "project doc",
"repository": "",
"site": "https://esdoc.org/manual/tags.html",
"image": "http://my-library.org/logo.png"
}
}
}
]
}