-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.conf.json
40 lines (40 loc) · 820 Bytes
/
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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": [
"jsdoc",
"closure"
]
},
"source": {
"include": [
"src"
],
"exclude": [
"src/vite-env.d.ts"
],
"includePattern": ".+\\.js|ts(doc|x)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"plugins/markdown",
"plugins/summarize",
"node_modules/better-docs/typescript",
"node_modules/better-docs/typescript"
],
"markdown": {
"excludeTags": [
"author"
]
},
"templates": {
"better-docs": {
"name": "Components"
}
},
"opts": {
"destination": "docs",
"recurse": true,
"readme": "README.md"
}
}