Create documentation comments for typescript in Visual Studio

When working in C # using ReSharper + StyleCop, I can automatically generate basic documentation comments for methods that look something like this:

/// <summary> /// The login. /// </summary> /// <param name="returnUrl"> /// The return Url. /// </param> /// <returns> /// The <see cref="Task"/>. /// </returns> 

after which I can add additional details.

Is there a similar tool for TypeScipt that will generate JSDoc comment sections so I can just fill in the details?

+5
source share
1 answer

ReSharper has a backlog element for this - Automated JavaScript comments .

For now, you just need to enter /** and then enter them yourself.

There is some extension that creates vsdoc and jsdoc * comments .

* JSDoc added in v2.

+5
source

Source: https://habr.com/ru/post/1206787/


All Articles