Skip to content

Commit f95dfda

Browse files
committed
added CheckerPlugin [ as per awesome-typescript-loader README: webpack/webpack#3460 ]
1 parent e321135 commit f95dfda

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

config/webpack.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ var HtmlWebpackPlugin = require('html-webpack-plugin');
33
var ExtractTextPlugin = require('extract-text-webpack-plugin');
44
var helpers = require('./helpers');
55

6+
const { CheckerPlugin } = require('awesome-typescript-loader');
7+
68
module.exports = {
79
devtool: 'source-map',
810

@@ -51,6 +53,7 @@ module.exports = {
5153
},
5254

5355
plugins: [
56+
new CheckerPlugin(),
5457
new HtmlWebpackPlugin({
5558
template: 'src/index.html'
5659
}),

0 commit comments

Comments
 (0)