-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjsdoc.json
More file actions
38 lines (38 loc) · 810 Bytes
/
jsdoc.json
File metadata and controls
38 lines (38 loc) · 810 Bytes
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
{
"source": {
"include": ["./server", "./client/src"],
"includePattern": ".js$",
"exclude": [
"./server/node_modules",
"./client/node_modules",
"./client/coverage",
"docs"
]
},
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": true,
"monospaceLinks": true
},
"opts": {
"encoding": "utf8",
"destination": "./docs",
"recurse": true,
"verbose": true,
"template": "node_modules/clean-jsdoc-theme",
"theme_opts": {
"theme": "dark",
"title": "Coversy Documentation",
"menu": [
{
"title": "Application",
"link": "https://coversy.vercel.app"
},
{
"title": "GitHub",
"link": "https://github.com/kito0/coversy"
}
]
}
}
}