-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.esdoc.json
33 lines (33 loc) · 992 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
{
"source": "./src",
"destination": "./docs",
"includes": ["\\.js$"],
"excludes": ["\\.config\\.js$"],
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"lint": {"enable": true},
"coverage": {"enable": true},
"accessor": {"access": ["public", "protected", "package", "private"], "autoPrivate": true},
"undocumentIdentifier": {"enable": false},
"unexportedIdentifier": {"enable": true},
"typeInference": {"enable": true}
}
},
{"name": "esdoc-ecmascript-proposal-plugin", "option": {"all": true}},
{"name": "esdoc-external-ecmascript-plugin", "option": {"enable": true}},
{"name": "esdoc-external-nodejs-plugin", "option": {"enable": true}},
{
"name": "esdoc-integrate-manual-plugin",
"option": {
"index": "./README.md",
"globalIndex": true,
"asset": "./manual/asset",
"files": [
"./manual/index.md"
]
}
}
]
}