-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy path.jsdoc.json
38 lines (38 loc) · 1.04 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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"source": {
"include": ["src/", "README.md"]
},
"plugins": [
"plugins/markdown",
"node_modules/better-docs/typescript",
"node_modules/better-docs/category"
],
"opts": {
"destination": "./docs/",
"template": "node_modules/better-docs",
"recurse": true,
"tutorials": "./src/docs/"
},
"templates": {
"cleverLinks": true,
"monospaceLinks": true,
"search": true,
"better-docs": {
"name": "Compliance Docs",
"navLinks": [
{
"label": "Compliance GitHub repository",
"href": "https://github.com/RedHatInsights/compliance-frontend/"
},
{
"label": "Compliance REST API v2 Documentation",
"href": "https://console.stage.redhat.com/docs/api/compliance/v2"
}
]
}
}
}