mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
28 lines
443 B
JavaScript
28 lines
443 B
JavaScript
const path = require('path');
|
|
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'],
|
|
}
|
|
};
|