Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>type-doc-vscodeNew to Visual Studio Code? Get it now.
type-doc-vscode

type-doc-vscode

Trezm

|
5,145 installs
| (0) | Free
TypeDoc type warnings in your code
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

TypeDoc VSCode Extension

Static type checking for pure JavaScript

Features

TypeDoc type warnings in your code.

TypeDocWarnings

Release Notes

0.0.33

  • Add duck typing
  • Fix minor bugs

0.0.29

  • Improve performance

0.0.27

  • Run type inferer on function bodies

0.0.26

  • Roll back some minor changes and add some more robustness because of exceptions.

0.0.24

  • Handle circular references
  • Allow missing JSDoc params
  • const should infer type from the assignment

0.0.23

  • Fix issues with call expressions as part of member expressions, i.e. someMethod().blah.blah

0.0.22

  • Fix issue with errors in separate files

0.0.21

  • Minor bug fixes for increased stability

0.0.20

  • Update type-doc version

0.0.19

  • Better support for dot notation handling
  • Various small bug fixes

0.0.14

  • Support for external type definition files in .d.ts format. Access through the settings:
{
  "typeDocServer.definitionFiles": [
    "./src/integrationTests/test.d.ts"
  ]
}
  • Added in TypeScript's lib.d.ts for better definitions. Included with every install.

0.0.10

  • Support for super/sub classes, either inferring, i.e.
class SuperClass {}
class SubClass extends SuperClass {}
const someClass /* t:SuperClass */ = new SubClass();

or by explicit comment

/**
 * class :: SuperClass
 */
class SuperClass {}
/**
 * class :: SubClass => SuperClass
 */
class SubClass extends SuperClass {}
const someClass /* t:SuperClass */ = new SubClass();
  • Object is now an alias for any

0.0.7

Better support for inline functions, e.g.

somePromise.then(function(result) {
  return result;
});

0.0.6

Update version and bump TypeDoc. Now should properly handle promises and type inference.

0.0.3

Update version and bump TypeDoc

0.0.1

Initial release of TypeDoc VSCode

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