mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
mode: 'production', // "production" | "development" | "none"
|
|
// Chosen mode tells webpack to use its built-in optimizations accordingly.
|
|
entry: ['babel-polyfill', './src/bowser.js'], // string | object | array
|
|
// defaults to ./src
|
|
// Here the application starts executing
|
|
// and webpack starts bundling
|
|
output: {
|
|
// options related to how webpack emits results
|
|
path: path.resolve(__dirname, 'dist'), // string
|
|
// the target directory for all output files
|
|
// must be an absolute path (use the Node.js path module)
|
|
filename: 'bowser.compiled.js', // string
|
|
// the filename template for entry chunks
|
|
library: 'bowser',
|
|
libraryTarget: 'umd', // universal module definition
|
|
// the type of the exported library
|
|
globalObject: 'this',
|
|
},
|
|
module: {
|
|
// configuration regarding modules
|
|
rules: [
|
|
// rules for modules (configure loaders, parser options, etc.)
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /(node_modules|bower_components)/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|