-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathwebpack.config.js
41 lines (39 loc) · 1.06 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
const path = require('path')
const webpack = require('webpack')
const TerserPlugin = require('terser-webpack-plugin')
const babelOptions = {
// For debugging, just remove "@babel/preset-env":
presets: ['@babel/preset-env', '@babel/preset-flow'],
plugins: [['@babel/plugin-transform-for-of', { assumeArray: true }]],
cacheDirectory: true
}
module.exports = {
devtool: 'source-map',
entry: './src/react-native.js',
mode: 'development',
module: {
rules: [
{
test: /\.js$/,
use: { loader: 'babel-loader', options: babelOptions }
}
]
},
plugins: [new webpack.ProvidePlugin({ Buffer: ['buffer', 'Buffer'] })],
optimization: {
minimize: true,
minimizer: [new TerserPlugin({ terserOptions: { safari10: true } })]
},
resolve: {
fallback: {
url: require.resolve('url/'),
crypto: require.resolve('crypto-browserify'),
stream: require.resolve('stream/')
}
},
output: {
path: path.resolve(__dirname, './lib/react-native/'),
filename: 'edge-currency-bitcoin.js'
},
target: ['web', 'es5']
}