-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.json
More file actions
31 lines (31 loc) · 873 Bytes
/
jsdoc.json
File metadata and controls
31 lines (31 loc) · 873 Bytes
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
{
"plugins": [
"node_modules/better-docs/typescript",
"node_modules/better-docs/category",
"node_modules/better-docs/component"
],
"source": {
"include": ["./src/components"],
"includePattern": "\\.(jsx|js|ts|tsx)$"
},
"babel": {
"extensions": ["ts", "tsx"],
"ignore": ["**/*.(test|spec).ts"],
"babelrc": false,
"presets": [
["@babel/preset-env", { "targets": { "node": true } }],
"@babel/preset-typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
},
"opts": {
"destination": "docs/",
"template": "node_modules/better-docs"
},
"tags": {
"allowUnknownTags": ["component", "optional", "category", "subcategory"]
}
}