webpack.config.js 234 B

123456789101112
  1. const path = require('path');
  2. module.exports = {
  3. entry: './src/index.js',
  4. output: {
  5. path: path.resolve(__dirname, 'dist'),
  6. filename: 'js/built.js',
  7. library:'utils',
  8. libraryTarget:'umd'
  9. },
  10. mode:'development'
  11. };