wisemapping-frontend/packages/web2d/webpack.common.js
Matias Arriola b5fd708971 Merged in feature/mindplot-lint (pull request #11)
mindplot lint

* fix eqeqeq

* fix max-len

* fix max-len, guard-for-in

* fix import/no-named-as-default-member

* misc fixes

* fix no-shadow

* fix no-param-reassign

* fix issues introduced with "fix no-param-reassign"

* Merge 'origin/develop' into feature/mindplot-lint

* lint and docs fixes after merge


Approved-by: Paulo Veiga
2021-12-20 20:54:31 +00:00

29 lines
514 B
JavaScript

const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
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/,
],
},
],
},
plugins: [new CleanWebpackPlugin()],
};