Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>tsdoc-insertNew to Visual Studio Code? Get it now.
tsdoc-insert

tsdoc-insert

Topppy

|
414 installs
| (0) | Free
A VSCode extension for insert TSDoc style comments into selections
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

tsdoc-insert README

A VSCode extension for insert TSDoc style comments into selections.

Features

Convert:

interface test {
  b: {
    a: number;
  };
  c: [string, { d: [boolean] }];
}

Into:

/**  */
interface test {
  /**  */
  b: {
    /**  */
    a: number;
  };
  /**  */
  c: [
    /**  */
    string,
    /**  */
    {
      d: [
        /**  */
        boolean
      ];
    }
  ];
}

How to Use

  • select a block of code (eg. typescript declarations).
  • Press Shift+Command+P (Mac) / Ctrl+Shift+P (Windows/Linux). open command palette.
  • Select TSDoc Insert: insert empty TSDoc style comments into selected text

Code Repository

https://github.com/Topppy/tsdoc-insert

License

MIT.

Release Notes

1.0.0

  • First release

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft