.babelrc location not configurable
See original GitHub issueIs it true that the babelrc location can not be specified in the loader options? (I guess so because of delete options.babelrc;
in index.js
). Why is that the case?
Issue Analytics
- State:
- Created 8 years ago
- Reactions:3
- Comments:13 (1 by maintainers)
Top Results From Across the Web
Config Files - Babel.js
Project-wide configuration x, Babel has a concept of a "root" directory, which defaults to the current working directory. For project-wide configuration, Babel ......
Read more >Where is the location of .babelrc file? - Stack Overflow
The .babelrc file is your local configuration for your code in your project. Generally you would put it ...
Read more >How to Configure Babel For Your Monorepo
In this post join me as I add Babel configuration to a monorepo, making sure that ... the code examples are not consistent...
Read more >Configuring Babel 7 - YouTube
How Babel 7 configuration works.Repo: https://github.com/kentcdodds/ babel -config-exampleDocs: ...
Read more >@babel/eslint-parser - npm
All location info such as line numbers, columns is also retained so you ... If no configuration file is found, @babel/eslint-parser will not ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This logic is WRONG. It should search starting from the directory of the file being transpiled instead of
process.cwd()
,Babelrc document:
+1