From fca6b15d30258d139f112bd547f4a33d385139ef Mon Sep 17 00:00:00 2001 From: Claudiu Codoban Date: Sun, 21 May 2017 15:30:29 +0300 Subject: [PATCH] Fixed compiler warnings --- webpack.config.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 21459b20b..57a2cd8d6 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -236,10 +236,11 @@ module.exports = { "rules": [ { "enforce": "pre", - "test": /\.js$/, + "test": /\.(js|ts)$/, "loader": "source-map-loader", "exclude": [ - /\/node_modules\// + /\/node_modules\//, + path.join(__dirname, 'node_modules', '@angular/compiler') ] }, {