PackwizJS/typedoc.json
2025-02-09 14:02:58 -06:00

25 lines
523 B
JSON

{
"entryPoints": ["src/**/*.ts"],
"outputs": [
{
"name": "html",
"path": "./docs/html",
"options": {
"navigation": {
"includeCategories": true,
"includeGroups": true,
"excludeReferences": false,
"includeFolders": true
}
}
},
{
"name": "markdown",
"path": "./docs/markdown"
}
],
"exclude": ["**/*+(test|spec).ts"],
"theme": "default",
"plugin": ["typedoc-plugin-markdown"],
"categorizeByGroup": true
}