-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjsdoc.json
More file actions
28 lines (27 loc) · 796 Bytes
/
jsdoc.json
File metadata and controls
28 lines (27 loc) · 796 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
{
"recurseDepth": 10,
"opts": {
"template": "node_modules/better-docs"
},
"tags": {
"allowUnknownTags": ["optional"]
},
"plugins": [
"node_modules/better-docs/typescript",
"plugins/markdown",
"node_modules/jsdoc-babel"
],
"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"]
},
"source": {
"include": "lib",
"includePattern": "\\.(jsx|js|ts|tsx)$",
"excludePattern": ".+\\.(test|spec).ts"
},
"sourceType": "module"
}