-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.config.json
More file actions
41 lines (41 loc) · 1.07 KB
/
jsdoc.config.json
File metadata and controls
41 lines (41 loc) · 1.07 KB
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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"plugins": [
"plugins/markdown",
"node_modules/better-docs/typescript",
"node_modules/better-docs/component"
],
"opts": {
"destination": "spec/docs",
"encoding": "utf8",
"readme": "README.md",
"recurse": true,
"verbose": true,
"template": "node_modules/better-docs"
},
"source": {
"include": [ "./src" ],
"exclude": [ "./src/**/*.text,tsx", "./src/**/*.test.ts" ],
"includePattern": "\\.(jsx|js|ts|tsx)$",
"excludePattern": "(^|\\/|\\\\)_"
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"search": true,
"better-docs": {
"name": "framework documentation",
"title": "Framework Documentation",
"hideGenerator": false,
"navLinks": [
{
"label": "Respository",
"href": "..."
}
]
}
}
}