wisemapping-frontend/packages/core-js/webpack.common.js
Paulo Gustavo Veiga bf08888a68 Update to yarn 3.
2023-01-04 18:23:09 -08:00

28 lines
443 B
JavaScript

const path = require('path');
module.exports = {
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'core.js',
publicPath: '',
library: {
type: 'umd',
},
},
target: 'web',
optimization: {
usedExports: true,
},
module: {
rules: [
{
use: 'babel-loader',
test: /.js$/,
exclude: [/node_modules/],
},
],
},
resolve: {
extensions: ['.js'],
}
};