-
Notifications
You must be signed in to change notification settings - Fork 468
/
webpack.config.js
33 lines (32 loc) · 889 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
var path = require('path');
module.exports = {
entry: "./src/ImageResize.js",
output: {
path: __dirname,
library: 'ImageResize',
libraryTarget: 'umd',
filename: "image-resize.min.js"
},
module: {
rules: [
{
test: /\.js$/,
include: path.join(__dirname, 'src'),
exclude: /(node_modules|bower_components)/,
use: [{
loader: 'babel-loader',
options: {
"presets": [["es2015", { "modules": false }]],
"plugins": ["babel-plugin-transform-class-properties"]
}
}]
},
{
test: /\.svg$/,
use: [{
loader: 'raw-loader'
}]
}
]
}
};