Search Terms: error message pretty collapsing
The TS team started a few conversations in TSConf 2018 about making TypeScript error messages more friendly to newcomers. One good first one to approach could be repeated, near-identical errors around the same type.
Code
For example, if a type is missing multiple times in the same file:
let a: MissingType;
let b: MissingType;
// ..
let c: MissingType;
Expected behavior:
In a debatably perfect world, TypeScript could give a single error message for the repeated class of error:
src/index.ts Error TS2304: Cannot find name 'MissingType'.
1 let a: MissingType;
~~~~~~~~~~~
2 let b: MissingType;
~~~~~~~~~~~
4 let c: MissingType;
~~~~~~~~~~~
Actual behavior:
Three separate errors.
Perhaps a post-processing step in --pretty mode that receives all of a file's errors and smooshes them down when it can?
Some open questions:
--pretty output but with line+column removed?and smooshes them down when it can?
and smooshes them down when it can?
and smooshes them down when it can?
and smooshes them down
and smooshes

The problem is that you really want to still present the related spans outside of pretty, so we'd need to report a different error depending on pretty which feels bad-ish.
Revisit once we have general multi-location diagnostic support.
Some notes in #23444
I think this should also cover Cannot redeclare block-scoped variable '{0}'
We have had a discussion about this offline. An observation here is that usually the duplicate declaration errors are caused by including the same module/declaration file more than once. so the result is multiple duplicate declaration errors for the same 2 files. A proposal for improvement here is if we notice a single file has more than X (say 5) duplicate declaration errors with the same file, then only report the first one with an elaboration saying that there are multiple errors there. https://github.com/Microsoft/TypeScript/issues/25324 track this suggestion.
Also, related to this is #15550
with https://github.com/Microsoft/TypeScript/issues/25324, I think we can call the underlying issue addressed.
Most helpful comment