Comment on A text adventure game on TypeScript's type systemComments−bilalq3yI never get tired of seeing fun little things like this. Is there a way to make VSCode not truncate the type info?−wwwigham3y`noErrorTruncation: true` in a tsconfig.[1] It also affects hover and quickinfo truncation. Technically it will still truncate, just at a way higher limit, like a million characters.[1]https://www.typescriptlang.org/tsconfig#noErrorTruncation−cercatrova3ySetting "noErrorTruncation": true, as proposed in the previous answer, does not work for this question as asked.https://stackoverflow.com/questions/62508909/vs-code-how-to-...−JeanMeche3yIt's an open ticket. https://github.com/microsoft/vscode/issues/94679
Comments
I never get tired of seeing fun little things like this. Is there a way to make VSCode not truncate the type info?
`noErrorTruncation: true` in a tsconfig.[1] It also affects hover and quickinfo truncation. Technically it will still truncate, just at a way higher limit, like a million characters.
[1]https://www.typescriptlang.org/tsconfig#noErrorTruncation
https://stackoverflow.com/questions/62508909/vs-code-how-to-...
It's an open ticket. https://github.com/microsoft/vscode/issues/94679