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
ES6-style module-loading may not function as expected
Due to technical limitations ES6-style module-loading is not fully supported in a babel-node REPL.
Hi, thanks for you example.
I have a question. When I added my additional module via
import test from './test.jsx';
with content
export default 1;
babel compile it to
and it does not work because node does not understand
export default 1;
.Babel somehow resolve dependencies for production? Or I should use webpack for example?
The text was updated successfully, but these errors were encountered: