Files
dotted-map-no-alaska/webpack.config.js
T
2021-04-16 18:51:42 +02:00

17 lines
303 B
JavaScript

const path = require('path');
module.exports = {
entry: './src/index.js',
mode: 'production',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'dotted-map.js',
library: {
name: 'dotted-map',
type: 'umd',
},
globalObject: 'this',
clean: true,
},
};