You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is because of create-react-app, and is also the case for the ESLint configuration, but there is a fix for that coming with my PR later.
The Babel side of things is not so easily fixed, unfortunately. Apparently you can do it with sth. like customize-cra and/or react-app-rewired; the method blessed by the CRA people is to fork react-scripts.
Or we can just eject ...
Apparently this is not really a problem at the moment, but this also potentially prevents us from using Babel plugins. This just happened to me, trying to use private methods.
The text was updated successfully, but these errors were encountered:
This is because of
create-react-app
, and is also the case for the ESLint configuration, but there is a fix for that coming with my PR later.The Babel side of things is not so easily fixed, unfortunately. Apparently you can do it with sth. like
customize-cra
and/orreact-app-rewired
; the method blessed by the CRA people is to forkreact-scripts
.Or we can just eject ...
Apparently this is not really a problem at the moment, but this also potentially prevents us from using Babel plugins. This just happened to me, trying to use private methods.
The text was updated successfully, but these errors were encountered: