mcf-objects/webpack.common.js
2020-03-16 23:25:54 +01:00

22 lines
400 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'mcf-objects.js',
library: 'mcfObjects',
libraryTarget: 'umd'
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
},
},
],
},
};