Search code examples
javascriptnode.jswebpackbabeljsbabel-loader

How to get .babelrc from sub package?


How can I get .babelrc from sub package? I don't want it my main package. I want from node_modules/mySubPackage/node_modules.

Thank you.


Solution

  • You could use babelrcroots, From the documentation:

    By default, Babel will only search for .babelrc files within the "root" package

    .....

    This option allows users to provide a list of other packages that should be considered "root" packages when considering whether to load .babelrc files.