Often times if I have complex types that I am naming for reuse purposes and what not I have a ton of named things referring to other named things. This is nice for organizational purposes but sometimes I want to just be able to inspect a variable or type and figure out what is effectively "compiles to" instead of having to reference a thosuand differnet named variabels and keep track of it in my head.
For instance:
type FooT = { test: string } | undefined;
const foo: FooT;
If I highlight the variable foo I will get intellisense telling me it is of type FooT but I would love for a way for it to show me { test: string } | undefined instead.