-
Notifications
You must be signed in to change notification settings - Fork 15
/
webpack.config.js
56 lines (53 loc) · 1.28 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* Copyright (c) 2017, Neap Pty Ltd.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
const path = require('path')
const TerserPlugin = require("terser-webpack-plugin")
const env = process.env.WEBPACK_ENV
const outputfilename = "graphqls2s"
const prod = env == "build"
const { plugins, outputfile } = prod
? { plugins: [], outputfile: `${outputfilename}.min.js` }
: { plugins: [], outputfile: `${outputfilename}.js` }
module.exports = {
mode: prod ? 'production' : 'development',
entry: [
'core-js/stable',
'regenerator-runtime/runtime',
'./src/graphqls2s.js'
],
output: {
path: __dirname + '/lib',
filename: outputfile,
libraryTarget: 'umd',
umdNamedDefine: true,
globalObject: 'this'
},
module: {
rules: [{
loader: "babel-loader",
exclude: [
path.resolve(__dirname, "node_modules")
],
// Only run `.js` and `.jsx` files through Babel
test: /\.jsx?$/,
// Options to configure babel with
options: {
// plugins: ['transform-runtime'],
presets: [
['@babel/preset-env', {'modules': false}]
]
}
}, ]
},
devtool: 'source-map',
plugins: plugins,
optimization: {
minimize: prod,
minimizer: [new TerserPlugin()]
}
}