Я пишу некоторую документацию по API для приложения Node / Express с JSDo c. У меня есть простой файл конфигурации, настроенный при запуске jsdoc ./routes -c config.json
:
{
"source": {
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc", "closure"]
},
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": true,
"monospaceLinks": true
},
"opts": {
"destination": "docs",
"recurse": true,
"readme": "README.md"
}
}
Команда выводит папку /docs
с fonts
, scripts
, styles
и index.html
. Есть ли способ настроить JSDo c для исключения вывода всех каталогов, кроме простого файла HTML? Я думал что-то вроде:
"output": {
"exclude": ["fonts", "scripts", "styles"]
}