First of all, sorry for asking a question in the issue tracker. I have checked the contributing guidelines but I didn't see any mention to a preferred way to ask a question.
To the point: is it possible to use typedoc to generate documentation from a project which is not written in TypeScript but which provides typescript typings? In other words, is it possible to generate documentation from comments present in *.d.ts files only?
I am asking to see if typedoc would be an option for documenting SequelizeJS.
TypeDoc can document declaration files, so yes you could use it to generate documentation as you describe. You will probably need a combination of --includeDeclarations and --exclude to ignore anything in node_modules
This is fine for a question, but you will probably get an answer faster if you reach out through the TypeDoc gitter room.
Closing as it appears this has been answered satisfactorily and is in the hands of the SequelizeJS maintainers.