-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is Babel supported? #23
Comments
Hey @ryuuji3, the repl under the hood is using Babel through a modified version of parcel-bundler(v1). I have tested this and it seems to work fine by using in my test code a {
"plugins": ["@babel/plugin-proposal-nullish-coalescing-operator"]
} or by using a module.exports = {
plugins: ['@babel/plugin-proposal-nullish-coalescing-operator'],
}; So I am thinking that maybe you have an issue like this by using a |
Hi thanks for getting back to me! |
I think that is possible to support the babel configuration through the Thank you so much for your feedback and If you have any other issue or you think that any feature is missing, feel free to post about it. |
Hi,
I have some files that use experimental syntax- eg. nullishCoalescingOperator.
For some reason even with babel, the REPL shows SyntaxError on the lines that use experimental syntax :/
The text was updated successfully, but these errors were encountered: