Webpack config has an unknown property 'preLoaders'
I'm learning webpack from scratch. I've learned how to link javascript files with require. I'm bundling and minifying my js files and i'm listening for changes with watch. I'm setting up loaders to convert my sass files to css. But when I try to setup a linting process with jshint-loader, i'm running into issues. module: { preLoaders: [ { test: /\.js$/, // include .js files exclude: /node_modules/, // exclude any and all files in the node_modules folder loader: "jshint-loader" } ], loaders: [ { test: /\.scss$/, loader: 'style-loader!css-loader!sass-loader' }, { test: /\.js$/, loader: 'babel