Extension provides ability to browse typescript source code by using side panel populated with list of declarations in currently opened typescript file.
Open Visual Studio Code press CTRL+p and type or copy and paste:
ext install kdcro101.typescript-code-navigator
To open panel press CTRL+P (Show all commands) and select Show code navigator for typescript
or
click icon on right side of status bar.
Click on member in code navigator panel to highlight selected member in active editor.
Code navigator will update when active editor changes. When there is no opened documents, code navigator will close itself
typescript.navigator.collapseEnums
: boolean
- should collapse enum declarations when populating panel,
default = true
typescript.navigator.collapseInterfaces
: boolean
- should collapse interface declarations when populating panel,
default = true
typescript.navigator.collapseClasses
: boolean
- should collapse class declarations when populating panel,
default = false
typescript.navigator.showVisibilityLabels
: boolean
- show class member modifiers (visibility) in navigator,
default = true
typescript.navigator.showIcons
: boolean
- show icons in navigator,
default = true
typescript.navigator.showDataTypes
: boolean
- show data types in navigator (if available),
default = true