wisemapping-frontend/packages/web2d/webpack.common.js
2021-12-04 15:39:20 -08:00

35 lines
756 B
JavaScript

const path = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
/** @type {import('webpack').Configuration} */
module.exports = {
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
publicPath: '',
library: {
type: 'umd',
},
},
module: {
rules: [
{
use: ['babel-loader', 'eslint-loader'],
test: /.(js)$/,
exclude: [
/node_modules/,
path.resolve(__dirname, '../../libraries/underscore-min'),
],
},
],
},
target: 'web',
resolve: {
alias: {
'@libraries': path.resolve(__dirname, '../../libraries/'),
},
extensions: ['.js', '.json'],
},
plugins: [new CleanWebpackPlugin()],
};