I have an angular2 Project that I compress/compile with webpack.
I use tslink loader with webpack so I have tslint related configuration in webpack.config.js
webpack.config.js
If you don't want to add a plugin, you can do something like this,
module: { rules: [ { enforce: 'pre', test: /\.ts$/, loader: 'tslint-loader?' + JSON.stringify({ emitErrors: true, failOnHint: true }) } ] }