A simplified utility for transpiling ES6+ JavaScript using webpack and Babel under the hood, aiming to reduce configuration overhead. Version 1.0.2 is the latest stable release, with no recent updates (last published years ago). It provides a single function `generateConfig` that returns a webpack configuration object for easy setup. Notable differentiators: it abstracts away webpack and Babel details, but requires manual Babel preset configuration in package.json. This package appears to be unmaintained and superseded by more modern bundlers.
npm install es6-transpiler-configNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows minimal setup: install required dependencies, configure Babel preset in package.json, and create a webpack config using generateConfig().
Migrate to webpack 5 with babel-loader or use Vite.
Upgrade Node to version 6+.
Add 'babel': { 'presets': ['es2015'] } to package.json.npm install --save-dev babel-preset-es2015
Use const generateConfig = require('es6-transpiler-config');