-
-
Notifications
You must be signed in to change notification settings - Fork 812
/
Copy pathbase.js
50 lines (48 loc) · 1.01 KB
/
base.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
const path = require('path')
const electronPkg = require('electron/package.json')
const babelConfig = require('../babel.config')({ cache: () => {} })
// Webpack 2 have native import / export support
babelConfig.presets = [
[
'@babel/preset-env',
{
targets: { electron: electronPkg.version },
modules: false,
},
],
'@babel/preset-react',
]
babelConfig.babelrc = false
module.exports = {
output: {
path: path.join(__dirname, '../dist/js'),
filename: 'bundle.js',
libraryTarget: 'commonjs2',
},
plugins: [],
resolve: {
extensions: ['.js'],
alias: {},
},
module: {
rules: [
{
test: /\.js$/,
use: [
{
loader: 'babel-loader',
options: babelConfig,
},
],
exclude: /node_modules/,
},
],
},
externals: [
'react-devtools-core/standalone',
// https://github.com/sindresorhus/conf/blob/master/index.js#L13
'electron-store',
'adbkit',
'electron-named-image',
],
}