-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.conf.json
45 lines (45 loc) · 1.08 KB
/
jsdoc.conf.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
},
"source": {
"include": ["src/lib"],
"exclude": ["./src/**/*.text,tsx", "./src/**/*.test.ts"],
"includePattern": "\\.(jsx|js|ts|tsx)$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"plugins/markdown",
"typescript",
"node_modules/better-docs/typescript",
"node_modules/better-docs/component",
"node_modules/better-docs/category"
],
"templates": {
"search": true,
"cleverLinks": true,
"monospaceLinks": false,
"better-docs": {
"title": "Cryptr React SDK",
"logo": "https://docs.cryptr.co/img/cryptr_docs_light_logo.svg",
"navLinks": [
{
"label": "Github",
"href": "https://github.com/cryptr-auth/cryptr-react"
},
{
"label": "Example",
"href": "https://github.com/cryptr-examples/cryptr-react-sample"
}
]
}
},
"opts": {
"destination": "docs/",
"encoding": "utf8",
"recurse": true,
"verbose": true,
"readme": "README.md",
"template": "./node_modules/better-docs"
}
}