Documentation configuration remarks
Typedoc compile
typedoc.json
shall be updated to
{
"name": "Seatmap Renderer",
"entryPoints": [
"src"
],
// "includes": "src/",
"out": "docs",
"hideGenerator": true,
"excludePrivate": true,
"excludeProtected": true,
"excludeExternals": false,
"readme": "none",
"plugin": [
"typedoc-plugin-markdown"
],
"disableSources": true,
"excludeScopesInPaths": true,
// "hideGroupHeadings": true,
"outputFileStrategy": "Modules",
"entryFileName": "index",
"useHTMLAnchors": true,
"useCodeBlocks": true,
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"enumMembersFormat": "table",
"propertyMembersFormat": "table",
"typeDeclarationFormat": "table",
"hidePageTitle": true
}