-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
31 lines (28 loc) · 991 Bytes
/
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
module.exports = {
// This is the entry point or start of our react applicaton
entry: "./src/app.jsx",
// The plain compiled JavaScript will be output into this file
output: {
filename: "./public/bundle.js"
},
// This section desribes the transformations we will perform
module: {
loaders: [
{
// Only working with files that in in a .js or .jsx extension
test: /\.jsx?$/,
// Webpack will only process files in our app folder. This avoids processing
// node modules and server files unnecessarily
include: /src/,
loader: "babel-loader",
query: {
// These are the specific transformations we'll be using.
presets: ["react", "es2015"]
}
}
]
},
// This lets us debug our react code in chrome dev tools. Errors will have lines and file names
// Without this the console says all errors are coming from just coming from bundle.js
devtool: "eval-source-map"
};