mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
25 lines
390 B
JavaScript
25 lines
390 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: 'web2d.js',
|
|
publicPath: '',
|
|
library: {
|
|
type: 'umd',
|
|
},
|
|
},
|
|
optimization: {
|
|
usedExports: true,
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
use: ['babel-loader'],
|
|
test: /.(js)$/,
|
|
exclude: [/node_modules/],
|
|
},
|
|
],
|
|
},
|
|
};
|