PackwizJS/typedoc.json

26 lines
523 B
JSON
Raw Normal View History

2025-02-09 10:00:02 -06:00
{
2025-02-09 10:33:44 -06:00
"entryPoints": ["src/**/*.ts"],
"outputs": [
{
"name": "html",
"path": "./docs/html",
"options": {
"naivgation": {
"includeCategories": true,
"includeGroups": true,
"excludeReferences": false,
"includeFolders": true
}
}
},
{
"name": "markdown",
"path": "./docs/markdown"
}
],
2025-02-09 10:33:44 -06:00
"exclude": ["**/*+(test|spec).ts"],
2025-02-09 10:00:02 -06:00
"theme": "default",
2025-02-09 10:33:44 -06:00
"plugin": ["typedoc-plugin-markdown"],
2025-02-09 10:00:02 -06:00
"categorizeByGroup": true
}