forked from react-in-action/letters-social
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesdoc.json
34 lines (34 loc) · 1.09 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
{
"source": "src",
"destination": "./dist/docs",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"title": "Letters Social",
"description":
"Sample application for React in Action (https://ifelse.io/book)",
"repository": "https://github.com/react-in-action/letters-social",
"site": "https://ifelse.io",
"author": "https://twitter.com/markthethomas"
}
}
},
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"classProperties": true,
"objectRestSpread": true,
"doExpressions": true,
"functionBind": true,
"functionSent": true,
"asyncGenerators": true,
"decorators": true,
"exportExtensions": true,
"dynamicImport": true
}
},
{ "name": "esdoc-jsx-plugin" }
]
}