forked from esdoc/esdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathesdoc.json
More file actions
35 lines (35 loc) · 934 Bytes
/
esdoc.json
File metadata and controls
35 lines (35 loc) · 934 Bytes
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
{
"source": "./src",
"destination": "./doc/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": {
"asset": "./manual/asset",
"overview": ["./manual/overview.md", "./manual/feature.md"],
"installation": ["./manual/installation.md"],
"usage": ["./manual/usage.md", "./manual/api.md"],
"tutorial": ["./manual/tutorial.md"],
"configuration": ["./manual/configuration.md"],
"example": ["./manual/example.md"],
"faq": ["./manual/faq.md"],
"changelog": ["./CHANGELOG.md"]
}
}