-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.json
76 lines (76 loc) · 1.87 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
{
"tags": {
"allowUnknownTags": false
},
"source": {
"include": ["../todo-list-app/js,", "./js"],
"includePattern": "\\.js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"opts": {
"template": "node_modules/docdash",
"encoding": "utf8",
"destination": "docs/",
"recurse": true,
"verbose": true
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false
},
"docdash": {
"static": [true],
"sort": [true],
"sectionOrder": [
"Classes",
"Modules",
"Externals",
"Events",
"Namespaces",
"Mixins",
"Tutorials",
"Interfaces"
],
"disqus": "",
"openGraph": {
"title": "",
"type": "website",
"image": "",
"site_name": "",
"url": ""
},
"meta": {
"title": "",
"description": "",
"keyword": ""
},
"search": false,
"collapse": true,
"wrap": true,
"typedefs": true,
"navLevel": 8,
"private": true,
"removeQuotes": "all",
"scripts": [],
"menu": {
"Project Website": {
"href": "https://todolistapp.elodie-devgirl.com/",
"target": "_blank",
"class": "menu-item",
"id": "website_link"
},
"Wiki GitHub": {
"href": "https://github.com/elodiew/todo-list-app/wiki",
"target": "_blank",
"class": "menu-item",
"id": "forum_link"
}
},
"scopeInOutputPath": true,
"nameInOutputPath": true,
"versionInOutputPath": true
}
}