A VSCode extension for converting simple C/C++ style comments into TSDoc style comments
Features
Convert:
// This is a multi-line comment
// And will be converted into
// TSDoc style comment
name: string;
@Expose({name: 'len'})
length: number; // this a single line comment
Into:
/** This is a multi-line comment
* And will be converted into
* TSDoc style comment
*/
name: string;
/** this a single line comment */
@Expose({name: 'len'})
length: number;
How to Use
Select a block of text
Press Ctrl+Shift+P. Select TSDoc Comment: convert selected text into TSDoc style comment