Comment by sberens
20 hours ago
I wish IDEs had more features/tooling around types. For example, something like "expand all types by one level" where
{ foo: Bar } would expand to { foo : { bar1: string, bar2: Baz } } (and you could trigger it again to expand Baz)
(this would be especially nice if it worked with vscode/cursor on-hover type definitions)
The poor support for types in VS Code has always been a blocker for me adopting it vs. Jetbrains, where types and the intellisense are much easier to jump between.
This guy gets it
This would produce interesting results with types defined via `infer` or template literal types.
That being said I wish the same.