forked from flarum/api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esdoc.json
56 lines (56 loc) · 1.25 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
{
"source": "../../../flarum/js/src",
"destination": "./",
"package": "../../../package.json",
"includes": ["\\.js$", "\\.tsx?$"],
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"logo": "../../../src/flarum.png",
"title": "Flarum API",
"description": "Flarum API documentation",
"repository": "https://github.com/flarum/core",
"site": "https://api.docs.flarum.org/js",
"author": "https://github.com/datitisev"
},
"lint": { "enable": false }
}
},
{
"name": "esdoc-jsx-plugin"
},
{
"name": "esdoc-exclude-source-plugin"
},
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"all": true
}
},
{
"name": "@atscm/esdoc-typescript-plugin"
},
{
"name": "esdoc-importpath-plugin",
"option": {
"replaces": [
{"from": "src/", "to": ""},
{"from": "\\.js", "to": ""},
{"from": "\\.tsx?", "to": ""}
]
}
},
{
"name": "../../../src/esdoc-babel-plugin",
"option": {
"presets": [
"@babel/preset-react",
"@babel/preset-typescript"
]
}
}
]
}