mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 09:53:24 +01:00
b5fd708971
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
29 lines
514 B
JavaScript
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()],
|
|
};
|