This repository was archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.json
More file actions
67 lines (66 loc) · 1.63 KB
/
jsdoc.json
File metadata and controls
67 lines (66 loc) · 1.63 KB
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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc", "closure"]
},
"source": {
"include": ["dist"],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": true,
"monospaceLinks": true
},
"opts": {
"template": "node_modules/docdash",
"destination": "docs",
"recurse": true,
"readme": "README.md"
},
"docdash": {
"scripts": ["https://sourcemod.js.org/styles/jsdoc.mod.css"],
"search": true,
"private": false,
"typedefs": true,
"menu": {
"GitHub": {
"href": "https://github.com/Infinixius/sourcemod.js",
"target": "_blank",
"class": "menu-item",
"id": "github_link"
},
"NPM": {
"href": "https://www.npmjs.com/package/sourcemod.js",
"target": "_blank",
"class": "menu-item",
"id": "npm_link"
}
},
"sectionOrder": [
"Classes",
"Modules",
"Externals",
"Typedefs",
"Namespaces",
"Mixins",
"Tutorials",
"Interfaces"
],
"openGraph": {
"title": "SourceMod.JS Documentation",
"type": "website",
"image": "https://sourcemod.js.org/assets/socialpreview.png",
"site_name": "SourceMod.JS Documentation",
"url": "https://sourcemod.js.org"
},
"meta": {
"title": "SourceMod.JS Documentation",
"description": "A JavaScript wrapper over SourceMod.",
"keyword": "sourcemod, sourcemod.js"
}
}
}