TypeDoc уже выполняет некоторую классификацию по команде "-mode file", например, "перечисления", "классы", "интерфейсы", "литералы объекта", ...
Моя команда:
typedoc --ignoreCompilerErrors -mode file --exclude node_modules --out docs src/
Могу ли я настроить эти классификации?
Фактически:
- Interfaces
* Interface1 * Interface2
- Classes
* Component1 * Service1
* ComponentTest1 * ComponentModule
- Enumerables
...
Желательно:
- Interfaces
...
- Enumerations
...
- Services
* Service1 * Service3
* Service2 * Service4
- Components
* Component1 * Component3
...