This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.jsdoc.json
50 lines (49 loc) · 1.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
{
"opts": {
"template": "node_modules/docdash",
"destination": "./docs/jsdoc/"
},
"tags": {
"allowUnknownTags": true
},
"source": {
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"default": {
"outputSourceFiles": true
}
},
"docdash": {
"meta": {
"title": "Design Patterns in JS",
"description": "Design Patterns in JS, inspired by GoF",
"keyword": "javascript, js, design, design patterns"
},
"openGraph": {
"title": "Design Patterns in JS",
"type": "website",
"image": "https://avatars3.githubusercontent.com/u/2680116?s=280&v=4",
"site_name": "Design Patterns in JS",
"url": "https://lxsmnsyc.github.io/design-patterns-js/"
},
"sectionOrder": [
"Tutorials",
"Namespaces",
"Classes",
"Interfaces"
],
"menu":{
"Github Repo":{
"href":"https://github.com/lxsmnsyc/DesignPatternsJS",
"target":"_blank",
"class":"menu-item",
"id":"website_link"
}
}
}
}