forked from EdgeApp/edge-react-gui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
40 lines (35 loc) · 1.02 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
/* eslint-disable flowtype/require-valid-file-annotation */
const path = require('path')
const webpack = require('webpack')
// Set this to false for easier debugging:
const production = true
const babelOptions = {
babelrc: false,
presets: production ? ['@babel/preset-env'] : [],
plugins: [['@babel/plugin-transform-for-of', { assumeArray: true }]],
cacheDirectory: true
}
module.exports = {
entry: './src/util/corePluginBundle.js',
mode: production ? 'production' : 'development',
module: {
rules: [
{
test: /\.js$/,
exclude: /(@babel\/runtime|babel-runtime)/,
use: { loader: 'babel-loader', options: babelOptions }
}
]
},
output: {
filename: 'plugin-bundle.js',
path: path.join(path.resolve(__dirname), 'android/app/src/main/assets/edge-core')
},
performance: { hints: false },
node: { fs: 'empty' },
plugins: [new webpack.IgnorePlugin(/^(https-proxy-agent)$/)],
resolve: {
aliasFields: ['browser'],
mainFields: ['browser', 'module', 'main']
}
}