.babelrc and postLoaders?
amcsi opened this issue · 2 comments
amcsi commented
I have two questions:
- How come you aren't configuring babel with a .babelrc, and instead using postLoaders?
- Why are you using postLoaders instead of regular loaders for babel?
RickWong commented
- I find .babelrc an unnecessary extra file. I like the Babel configuration within the Webpack configuration, together.
- Because it's easier to replace postLoaders in the
-watch.js
files.
amcsi commented
Thanks!