forked from pzuraq/esdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.esdoc.json
39 lines (39 loc) · 1.04 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
{
"source": "./src",
"destination": "./out/esdoc",
"excludes": ["Publisher/Builder/template/", "BuiltinExternal/"],
"access": ["public", "protected", "private"],
"debug": false,
"index": "./README.md",
"package": "./package.json",
"title": "ESDoc",
"test": {
"type": "mocha",
"source": "./test/src"
},
"plugins": [
{
"name": "esdoc-importpath-plugin",
"option": {
"replaces": [
{"from": "^src/", "to": "out/src/"}
]
}
}
],
"manual": {
"globalIndex": false,
"asset": "./site/manual/asset",
"index": "./site/manual/index.md",
"overview": [],
"design": ["./site/manual/design/design.md"],
"installation": [],
"usage": ["./site/manual/usage/usage.md", "./site/manual/usage/feature.md", "./site/manual/usage/tags.md"],
"tutorial": [],
"configuration": ["./site/manual/configuration/config.md"],
"example": [],
"advanced": ["./site/manual/advanced/api.md"],
"faq": ["./site/manual/faq/faq.md"],
"changelog": ["./CHANGELOG.md"]
}
}