This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.esdoc.json
99 lines (99 loc) · 2.54 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"destination": "./docs/api",
"source": "./@dekk",
"includes": ["\\.js$"],
"package": "./package.json",
"index": "./README.md",
"excludes": ["lib", "node_modules", "test", "webpack.*.*js$", ".prettierrc.js"],
"plugins": [
{
"name": "esdoc-ecmascript-proposal-plugin",
"option": {
"all": true
}
},
{
"name": "esdoc-importpath-plugin",
"option": {
"stripPackageName": true,
"replaces": [{"from": "/src/", "to": "/lib/"}]
}
},
{
"name": "esdoc-coverage-plugin",
"option": {
"enable": true,
"kind": ["class", "method", "member", "get", "set", "constructor", "function", "variable"]
}
},
{
"name": "esdoc-brand-plugin",
"option": {
"author": "https://github.com/pixelass",
"description": "A presentation tool written in React.js",
"image": "./resources/logo.png",
"logo": "./resources/logo.png",
"repository": "https://github.com/sinnerschrader/dekk",
"site": "https://sinnerschrader.github.io/dekk",
"title": "Dekk"
}
},
{
"name": "esdoc-lint-plugin",
"option": {
"enable": true
}
},
{
"name": "esdoc-jsx-plugin",
"option": {
"enable": true
}
},
{
"name": "esdoc-publish-html-plugin",
"option": {
"template": "./node_modules/esdoc-custom-theme/template"
}
},
{
"name": "esdoc-standard-plugin",
"option": {
"accessor": {
"access": ["public"],
"autoPrivate": false
},
"undocumentIdentifier": {
"enable": false
},
"unexportedIdentifier": {
"enable": false
},
"manual": {
"index": "./.manual/index.md",
"globalIndex": true,
"asset": "./.manual/assets",
"files": [
"./.manual/index.md",
"./.manual/installation.md",
"./.manual/usage.md",
"./.manual/slides.md",
"./.manual/fragments.md",
"./.manual/animations.md",
"./.manual/speaker-notes.md",
"./.manual/plugins.md",
"./.manual/static-elements.md",
"./.manual/text-elements.md",
"./.manual/images.md",
"./.manual/master-slides.md",
"./.manual/masters.md",
"./.manual/timer.md",
"./.manual/icons.md",
"./.manual/examples.md",
"./CHANGELOG.md"
]
}
}
}
]
}