forked from lucaong/minisearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.esdoc.json
31 lines (31 loc) · 939 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
{
"source": "./src",
"destination": "./docs",
"includes": ["\\.js$"],
"excludes": ["benchmark", "testSetup", "\\.test\\.js$"],
"outputAST": false,
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"accessor": { "access": ["public"], "autoPrivate": true },
"coverage": { "enable": false },
"brand": {
"title": "MiniSearch",
"logo": "MiniSearch.png",
"description": "Tiny but powerful full-text search",
"site": "https://lucaong.github.io/minisearch/",
"repository": "https://github.com/lucaong/minisearch",
"author": "https://twitter.com/lucaongaro"
},
"manual": {
"files": ["README.md", "CONTRIBUTING.md", "CODE_OF_CONDUCT.md", "DESIGN_DOCUMENT.md", "CHANGELOG.md"]
}
}
},
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": { "all": true }
}
]
}