wisemapping-frontend/packages/core-js/webpack.common.js

33 lines
683 B
JavaScript
Raw Normal View History

2021-10-03 04:52:56 +02:00
const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
2021-07-16 16:41:58 +02:00
module.exports = {
2021-07-16 16:41:58 +02:00
output: {
path: path.resolve(__dirname, 'dist'),
2021-07-16 16:41:58 +02:00
filename: 'core.js',
publicPath: '',
library: {
type: 'umd',
2021-12-14 16:08:54 +01:00
}
2021-07-16 16:41:58 +02:00
},
2021-10-03 05:29:24 +02:00
target: 'web',
2021-12-20 03:46:47 +01:00
optimization: {
usedExports: true,
},
2021-07-16 16:41:58 +02:00
module: {
rules: [
{
use: 'babel-loader',
2021-10-03 04:52:56 +02:00
test: /.js$/,
exclude: [
/node_modules/,
]
},
2021-07-16 16:41:58 +02:00
],
},
resolve: {
2021-10-03 04:52:56 +02:00
extensions: ['.js'],
2021-07-16 16:41:58 +02:00
},
plugins: [new CleanWebpackPlugin()],
};