I'm fairly new to programming so apologies if my question isn't clear or doesn't make sense.
I learned about polyfilling, Parcel, Babel and Core.js through some tutorials over a year ago (prior to the release of Parcel V2).
With parcel v1, babel and core.js needed to be installed for polyfilling.
It appears to me that with Parcel v2, if had only intended to use @babel/preset-env I should not install babel as a dependency (Parcel v2 handles polyfilling better on it's own), which would mean I don't need core.js.
Is this correct?
I am working on small uncomplicated sites.