mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-15 19:47:57 +01:00
33 lines
683 B
JavaScript
33 lines
683 B
JavaScript
|
const path = require('path');
|
||
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
||
|
|
||
|
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'],
|
||
|
},
|
||
|
plugins: [new CleanWebpackPlugin()],
|
||
|
};
|