-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwebpack.config.js
More file actions
38 lines (34 loc) · 839 Bytes
/
webpack.config.js
File metadata and controls
38 lines (34 loc) · 839 Bytes
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
const path = require('path')
, webpack = require("webpack")
, nodeExternals = require('webpack-node-externals');;
module.exports = {
target: 'electron-renderer',
externals: [
nodeExternals()
],
entry: "./app/lib/ui/init.js",
output: {
path: path.join(__dirname, 'app/lib/ui'),
filename: "bundle.js"
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015']
}
},
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.scss$/,
loader: 'style!css!sass'
}
]
}
};