I've come to the decision to eliminate Babel transpilation from my projects, as I no longer see the need to accommodate pre-ES6 era browsers. However, my search efforts have yielded no results on how to go about this. My Nuxt project is currently filled with various '@babel' packages in the package.json file, and I am wondering if there is a straightforward way to completely remove Babel. Is it as easy as setting babel: false
somewhere in the configuration? I am looking for a clean solution to remove all Babel-related dependencies. How can I achieve this?