Created by: johnnyreilly
At present when using CRA with TypeScript, you can click on an error in the console and go to the erroring file. This is great!
What would be even better, is if you went directly to the line and column where the error is happening like this:
This PR enables this by augmenting the output in the typescriptFormatter
. There is some duplication in the console as webpack already displays the filepath alone.
Certainly for myself, I'd take this duplication to unlock the ability to click and go directly to an error. (This is what the default formatter in fork-ts-checker-webpack-plugin
does.)
What do you think?