1//JSDoc is configured for max recursion depth of 10 - it means
2// max 10 nested folders are seen bu JSdoc. User recurseDepth param
3// specify a deeper recursion. This param should be put
4// as the root param in the json jsdoc config
5
6//jsdoc.conf.json
7{
8 "recurseDepth": 15,
9 "tags": {
10 //...
11 },
12 "source": {
13 //...
14 },
15 "plugins": [
16 //...
17 ],
18 "opts": {
19 //...
20 }
21}