forked from esdoc/esdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.esdoc.json
37 lines (37 loc) · 955 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
34
35
36
37
{
"source": "./src",
"destination": "./out/docs",
"excludes": ["Publisher/Builder/template/"],
"debug": false,
"index": "./README.md",
"package": "./package.json",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {"title": "ESDoc", "logo": "./manual/asset/image/logo.png"},
"test": {"source": "./test", "includes": ["\\.test\\.js$"]},
"manual": {
"index": "./README.md",
"asset": "./manual/asset",
"files": [
"./manual/usage.md",
"./manual/feature.md",
"./manual/tags.md",
"./manual/config.md",
"./manual/api.md",
"./manual/faq.md",
"./manual/migration.md",
"./CHANGELOG.md"
]
}
}
},
{
"name": "esdoc-importpath-plugin",
"option": {
"replaces": [{"from": "^src/", "to": "out/src/"}]
}
}
]
}