Skip to content

Instantly share code, notes, and snippets.

@roman01la
Created January 18, 2015 10:51
Show Gist options
  • Save roman01la/24255f468686e09b4947 to your computer and use it in GitHub Desktop.
Save roman01la/24255f468686e09b4947 to your computer and use it in GitHub Desktop.
module.exports = {
watch: true,
entry: [
__dirname + '/src/app'
],
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loaders: ['6to5-loader?optional=coreAliasing'] }
]
},
output: {
path: __dirname + '/dist',
filename: 'app.js'
},
resolve: {
extensions: ['', '.js']
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment