-
Notifications
You must be signed in to change notification settings - Fork 6
/
.esdoc.json
72 lines (71 loc) · 2.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"source": "./src",
"destination": "docs",
"excludes": [ "^app", "^cli" ],
"plugins": [
{
"name": "esdoc-babel-7-plugin",
"option": {
"plugins": [
["@babel/plugin-proposal-class-properties", { "loose": true }],
"@babel/plugin-proposal-do-expressions",
"@babel/plugin-proposal-function-bind",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-export-default-from",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-flow-strip-types",
"@babel/plugin-proposal-optional-chaining",
["babel-plugin-root-import", {
"rootPathPrefix": "@",
"rootPathSuffix": "node_modules/llir/lib/"
}]
]
}
},
{
"name": "esdoc-standard-plugin",
"option": {
"coverage": {
"enable": true
},
"accessor": {
"access": ["public", "protected", "readonly"],
"autoPrivate": true
},
"brand": {
"title": "VSL",
"description": "Versatile Scripting Language.",
"repository": "https://github.com/vsl-lang/VSL",
"site": "https://staging.vihan.org/VSL"
},
"test": {
"source": "./test",
"includes": [ "\\.js$" ]
}
}
},
{
"name": "esdoc-inject-style-plugin",
"option": {
"enable": true,
"styles": [ "misc/doc.css" ]
}
},
{
"name": "esdoc-inject-script-plugin",
"option": {
"enable": true,
"scripts": [ "misc/doc.js" ]
}
},
{
"name": "esdoc-importpath-plugin",
"option": {
"replaces": [
{ "from": "^src", "to": "lib" },
{ "from": "\\.js$", "to": "" }
]
}
}
]
}