I have a relatively standard webpack setting: webpack + babel-stage-0
If there is a syntax error, babel gives me a very useful error message, but also a stack trace, completely unrelated to my code, which is often longer than the terminal itself.

Is there a way to hide stacktrace from Parser.pp.raise
I know this is a very minor thing, but hidden stack tracing will mean less visual noise, and I don't need to scroll half of the terminal window to see my error message.
Things i tried
I tried to hide stderr with:
webpack --watch > /dev/null
but he did not seem to help.
source share