TypeScript Explorer
Disclaimer: This project is currently IN BETA, and is therefore subject to bugs and feature incompleteness!! Please open an issue if you encounter a bug or have any other suggestions! VSCode Extension providing full type information in TypeScript projects. Supports:
UsageTypescript Explorer provides a new view container, which presents hierarchical type information for type definitions, variables, and functions in TypeScript Projects:
By default, this will update type information on every click/selection in the text editor. This behavior can be changed either by locking the selection, or by disabling the "Type Tree > Selection" configuration option. There is also a command, "Select Symbol in Type Tree," which selects the type at the current cursor position, and is available in the editor's right-click menu:
Go To Definition
Finds the definition of the selected menu item. This will first go to the associated symbol; if there is no symbol, this will find the associated type definition. If there are multiple definitions (such as in declaration merging), they will cycle through. Hover for JSDoc
Hover over an item in the menu to retrieve JSDoc. Lock Selection
Prevents the current shown type information from changing on editor/cursor selection. ConfigurationSelection
Prevents type information from changing on click in the editor. Base Class / Type Parameters
Enable/disable base class or ambient type parameter information. Icons
Toggle icons and icon colors in the tree view. Readonly
Adds "readonly" to readonly properties and arrays:
|