-
Notifications
You must be signed in to change notification settings - Fork 1
/
.jsdoc.json
91 lines (91 loc) · 2.54 KB
/
.jsdoc.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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": [
"jsdoc",
"closure"
]
},
"source": {
"include": [
"src",
"package.json",
"README.md"
],
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"sourceType": "module",
"recurseDepth": 10,
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": true,
"useLongnameInNav": true,
"showInheritedInNav": true
},
"opts": {
"destination": "./docs/",
"encoding": "utf8",
"readme": "./README.md",
"recurse": true,
"verbose": true,
"template": "node_modules/clean-jsdoc-theme",
"theme_opts": {
"search": true,
"footer": "Powered by Coders",
"default_theme": "dark",
"base_url": "https://codersjs.netlify.app/",
"favicon": "https://github.com/brblacky/coders.js/blob/master/assets/Img/icon.png",
"homepageTitle": "CodersJS",
"title": "codersjs",
"menu": [
{
"title": "Github",
"id": "github",
"link": "https://github.com/brblacky/coders.js"
},
{
"title": "NPM",
"id": "npm",
"link": "https://www.npmjs.com/package/coders.js"
},
{
"title": "Discord",
"id": "discord",
"link": "https://discord.com/invite/ns8CTk9J3e"
}
],
"meta": [
{
"name": "author",
"content": "CodersJS"
},
{
"name": "description",
"content": "A simple, lightweight, and easy to use package for discord.js!"
}
],
"codepen": {
"enable_for": [
"examples"
],
"options": {
"js_external": "https://code.jquery.com/jquery-3.6.0.min.js",
"js_pre_processor": "babel"
}
},
"sections": [
"Classes",
"Modules",
"Global"
]
}
},
"markdown": {
"hardwrap": false,
"idInHeadings": true
}
}