2021-07-16 16:41:58 +02:00
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
module.exports = {
|
2021-10-05 02:05:34 +02:00
|
|
|
output: {
|
|
|
|
path: path.resolve(__dirname, 'dist'),
|
2021-12-18 23:55:01 +01:00
|
|
|
filename: 'web2d.js',
|
2021-10-05 02:05:34 +02:00
|
|
|
publicPath: '',
|
2021-12-02 01:41:56 +01:00
|
|
|
library: {
|
|
|
|
type: 'umd',
|
|
|
|
},
|
2021-10-05 02:05:34 +02:00
|
|
|
},
|
2021-12-20 03:46:47 +01:00
|
|
|
optimization: {
|
|
|
|
usedExports: true,
|
|
|
|
},
|
2021-10-05 02:05:34 +02:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
2021-12-20 21:54:31 +01:00
|
|
|
use: ['babel-loader'],
|
2021-10-05 02:05:34 +02:00
|
|
|
test: /.(js)$/,
|
2022-07-13 03:58:11 +02:00
|
|
|
exclude: [/node_modules/],
|
2021-12-02 01:41:56 +01:00
|
|
|
},
|
2021-10-05 02:05:34 +02:00
|
|
|
],
|
|
|
|
},
|
2021-07-16 16:41:58 +02:00
|
|
|
};
|