-
Notifications
You must be signed in to change notification settings - Fork 3
/
jsdoc.config.json
44 lines (44 loc) · 1.23 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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"source": {
"include": ["src"],
"includePattern": ".+\\.ts(doc|x)?$"
},
"plugins": [
"plugins/markdown",
"node_modules/better-docs/typescript"
],
"typescript": {
"moduleRoot": "src"
},
"templates": {
"cleverLinks": true,
"navMembers" : [
{"kind": "namespace", "title": "Actions & Qualifiers", "summary": "All documented namespaces."},
{"kind": "interface", "title": "Interfaces", "summary": "All documented interfaces."},
{"kind": "tutorial", "title": "Help & Examples", "summary": "All available tutorials."}
],
"stylesheets" : [
"./customStyles.css"
],
"scripts" : [
"./injectVersionSemver.js"
],
"search": true,
"monospaceLinks": true,
"systemColor": "#3448C5",
"systemName": "Cloudinary Transformation Builder (JS)",
"systemLogo": "./__DOCS__/resources/navLogo.png",
"systemSummary": "@cloudinary/transformation-builder-sdk",
"favicon": "./__DOCS__/resources/favico.png",
"copyright": "Copyright © 2021 Cloudinary.com"
},
"opts": {
"recurse": true,
"readme": "README.md",
"template": "./__DOCS__/JSDocTemplate/template"
}
}