crobinson42/string-format-validation

View on GitHub
webpack.dev.config.js

Summary

Maintainability
A
0 mins
Test Coverage
var path = require('path')

module.exports = {
  entry: './dev/index.js',
  output: {
    path: path.resolve(__dirname, 'build'),
    publicPath: '/assets/',
    filename: 'bundle.js'
  },
  module: {
    loaders: [
      {
        test: /\.js$/,
        exclude: /(node_modules)/,
        loader: 'babel'
      }
    ]
  }
}