webpack.config.js
This commit is contained in:
parent
333d8c06dd
commit
80a7f6019f
|
@ -0,0 +1,38 @@
|
|||
const path = require('path');
|
||||
|
||||
const browser = {
|
||||
entry: path.resolve(__dirname, 'dist') + '/browser.js',
|
||||
mode: 'production',
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.js$/,
|
||||
exclude: /(node_modules|bower_components)/,
|
||||
use: {
|
||||
loader: 'babel-loader',
|
||||
options: {
|
||||
presets: [
|
||||
['@babel/env']
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
// optimization: {
|
||||
// minimize: false
|
||||
// },
|
||||
output: {
|
||||
filename: 'embark.min.js',
|
||||
library: 'EmbarkJS',
|
||||
libraryTarget: 'umd',
|
||||
libraryExport: 'default',
|
||||
path: __dirname,
|
||||
umdNamedDefine: true,
|
||||
},
|
||||
target: 'web'
|
||||
};
|
||||
|
||||
module.exports = [
|
||||
browser
|
||||
];
|
Loading…
Reference in New Issue