-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.json
More file actions
executable file
·27 lines (27 loc) · 818 Bytes
/
jsdoc.json
File metadata and controls
executable file
·27 lines (27 loc) · 818 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
{
"title": "Contact Form Cloudflare Worker",
"plugins": ["plugins/markdown"],
"recurseDepth": 10,
"source": {
"include": ["src"],
"includePattern": ".js$",
"excludePattern": "(node_modules/|jsdoc/|.wrangler/)"
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc", "closure"]
},
"templates": {
"cleverLinks": true,
"monospaceLinks": true
},
"opts": {
"template": "./jsdoc/custom-template/", // same as -t custom-template
"encoding": "utf8", // same as -e utf8
"destination": "./jsdoc/", // same as -d ./jsdoc/
"recurse": true, // same as -r
// "tutorials": "./tutorials", // same as -u path/to/tutorials
"readme": "./README.md"
}
}