-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.config.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathjsdoc.config.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"plugins": [
"plugins/markdown",
"plugins/summarize",
"node_modules/better-docs/category"
],
"markdown": {
"idInHeadings": true
},
"recurseDepth": 10,
"source": {
"include": [
"./src"
],
"includePattern": ".+\\.js(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"sourceType": "module",
"tags": {
"allowUnknownTags": true,
"dictionaries": [
"jsdoc",
"closure"
]
},
"templates": {
"cleverLinks": true,
"monospaceLinks": true,
"search": true,
"better-docs": {
"name": "Concurrent Callback Queue",
"description": "A simple, lightweight, zero dependencies pure JavaScript queue implementation that allows for parallel execution of asynchronous tasks.",
"navigation": [
{
"label": "GitHub",
"href": "https://github.com/Diomeh/concurrent_callback_queue"
}
]
}
},
"opts": {
"encoding": "utf8",
"template": "./node_modules/better-docs",
"destination": "./docs/",
"recurse": true,
"verbose": true,
"readme": "./README.md",
"tutorials": "./tutorials",
"package": "./package.json"
}
}