Created
August 8, 2016 09:45
-
-
Save jkimbo/1744582ee66b8c281506cad4f6453e7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
devtool: 'cheap-module-source-map', // might want to change this `source-map` for prod builds | |
entry: './entry', | |
output: { | |
path: './build', | |
pathinfo: true, | |
filename: 'bundle.js', | |
}, | |
resolve: { | |
// These are the reasonable defaults supported by the Node ecosystem. | |
extensions: ['.js', '.json', ''], | |
}, | |
module: { | |
loaders: [ | |
// Process JS with Babel. | |
{ | |
test: /\.js$/, | |
include: './src', | |
loader: 'babel-loader', | |
query: { cacheDirectory: true } | |
}, | |
] | |
}, | |
plugins: [] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment