const path = require('path'); module.exports = { entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'js/built.js', library:'utils', libraryTarget:'umd' }, mode:'development' };