Generate documentation for ionic application

I’m looking for document my application.
Based on my little knowledge, i know that typescript has for example Typedoc.org and angular2 has dgeni for documentation.

I think that i have to use two tools: the typedoc and dgeni. and this is a lot of work.
Is there any tools to use for ionic2 app unstead of using two tools?

thank you in advance

1 Like

I did some quick research on typedoc, and found this worked well inside my ionic project -

npm i -g typedoc
cd <my-ionic-project>
typedoc --out dist/docs --mode modules .

cloudflare article on generating documentation for typescript

3 Likes