-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.jsdoc.json
71 lines (71 loc) · 1.9 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
{
"source": {
"include": [
"src",
"package.json",
"README.md",
"CONTRIBUTING.md",
"LICENSE.md"
],
"includePattern": ".js$"
},
"plugins": ["plugins/markdown"],
"opts": {
"encoding": "utf8",
"readme": "./README.md",
"destination": "docs/",
"recurse": true,
"verbose": true,
"template": "./node_modules/clean-jsdoc-theme",
"theme_opts": {
"theme": "light",
"title": "modern-async",
"menu": [
{
"title": "Github",
"link": "https://github.com/nicolas-van/modern-async"
}
],
"meta": [
{
"name": "author",
"content": "Nicolas Vanhoren"
},
{
"name": "description",
"content": "A modern tooling library for asynchronous operations using async/await and promises"
}
],
"footer": "modern-async is licensed under the terms of the MIT license",
"add_script_path": [
{
"src": "https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js",
"integrity": "sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=",
"crossorigin": "anonymous"
},
{
"src": "https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js",
"integrity": "sha256-KSlsysqp7TXtFo/FHjb1T9b425x3hrvzjMWaJyKbpcI=",
"crossorigin": "anonymous"
},
{
"src": "https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js",
"integrity": "sha256-OPn1YfcEh9W2pwF1iSS+yDk099tYj+plSrCS6Esa9NA=",
"crossorigin": "anonymous"
},
{
"src": "../../inject-script.js"
},
{
"src": "https://www.googletagmanager.com/gtag/js?id=G-707LQFBQY9"
},
{
"src": "../../ga.js"
},
{
"src": "https://cdn.jsdelivr.net/npm/modern-async"
}
]
}
}
}