-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.config.json
60 lines (60 loc) · 1.41 KB
/
jsdoc.config.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
{
"source": {
"include": ["src"],
"includePattern": ".+\\.js(x)?$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown",
"node_modules/better-docs/component",
"node_modules/better-docs/category"
],
"opts": {
"destination": "./docs",
"template": "node_modules/better-docs",
"readme": "./README.md"
},
"templates": {
"better-docs": {
"name": "Animated Backgrounds",
"title": "Animated Backgrounds Documentation",
"description": "Documentation for the Animated Backgrounds React package",
"navigation": [
{
"label": "GitHub",
"href": "https://github.com/umerfarok/animated-backgrounds"
},
{
"label": "NPM",
"href": "https://www.npmjs.com/package/animated-backgrounds"
}
]
}
},
"tags": {
"allowUnknownTags": ["component"]
},
"search": true,
"docdash": {
"static": false,
"sort": true,
"sectionOrder": [
"Classes",
"Modules",
"Externals",
"Events",
"Namespaces",
"Mixins",
"Tutorials",
"Interfaces"
],
"meta": {
"title": "Animated Backgrounds Documentation",
"description": "Documentation for the Animated Backgrounds React package",
"keyword": "react, animation, background, canvas, javascript"
},
"search": true,
"collapse": true,
"wrap": true
}
}