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

25 lines
390 B
JavaScript

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