-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathjsdoc.config.json
45 lines (45 loc) · 1.27 KB
/
jsdoc.config.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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"source": {
"include": ["packages/html/src", "packages/react/src", "packages/angular/projects/cloudinary-library/src", "packages/vue/src"],
"includePattern": ".+\\.(ts|vue)(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"plugins/markdown",
"node_modules/jsdoc-vuejs",
"node_modules/better-docs/typescript"
],
"typescript": {
"moduleRoot": "src"
},
"templates": {
"cleverLinks": true,
"navMembers" : [
{"kind": "namespace", "title": "Plugins", "summary": "All documented namespaces."},
{"kind": "mixin", "title": "Packages", "summary": "All documented packages."}
],
"stylesheets" : [
"./customStyles.css"
],
"scripts" : [
"./injectVersionSemver.js"
],
"search": false,
"monospaceLinks": true,
"systemColor": "#3448C5",
"systemName": "Cloudinary Frontend packages",
"systemLogo": "__DOC_RESOURCES__/navLogo.png",
"systemSummary": "client side packages & plugins",
"favicon": "__DOC_RESOURCES__/favico.png",
"copyright": "Copyright © 2023 Cloudinary.com"
},
"opts": {
"recurse": true,
"readme": "README.md",
"template": "./node_modules/foodoc/template"
}
}