Skip to content

Instantly share code, notes, and snippets.

@calvimor
Created January 19, 2017 18:10
Show Gist options
  • Save calvimor/cff01cf17d7a4f13d9b8fc0eabf17003 to your computer and use it in GitHub Desktop.
Save calvimor/cff01cf17d7a4f13d9b8fc0eabf17003 to your computer and use it in GitHub Desktop.
Development Webpack config for "Building a JavaScript Development Environment"
import path from 'path';
export default {
debug: true,
devtool: 'inline-source-map',
noInfo: false,
entry: [
path.resolve(__dirname, 'src/index')
],
target: 'web',
output: {
path: path.resolve(__dirname, 'src'),
publicPath: '/',
filename: 'bundle.js'
},
plugins: [],
module: {
loaders: [
{test: /\.js$/, exclude: /node_modules/, loaders: ['babel']},
{test: /\.css$/, loaders: ['style','css']}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment