In VSCode, TypeScript shows really useful expansions of types I define. But there\'s a limit to what TS will show in IntelliSense. If a type is too long, then I\'ll see outp
Try setting the noErrorTruncation option to true in tsconfig.json. Confusingly enough, this option affects truncation of types displayed on hover in at least some circumstances; see this issue. Be careful: if your type is really huge, VS Code may hang when you try to view it.