mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33: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
35 lines
652 B
JavaScript
35 lines
652 B
JavaScript
const path = require('path');
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: '[name].js',
|
|
publicPath: '',
|
|
library: {
|
|
type: 'umd',
|
|
},
|
|
},
|
|
optimization: {
|
|
usedExports: true,
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
use: ['babel-loader'],
|
|
test: /.(js$)/,
|
|
exclude: [
|
|
/node_modules/,
|
|
],
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@libraries': path.resolve(__dirname, '../../libraries/'),
|
|
},
|
|
extensions: ['.js', '.json'],
|
|
},
|
|
plugins: [new CleanWebpackPlugin()],
|
|
};
|