Skip to content

Commit fca6b15

Browse files
committed
Fixed compiler warnings
1 parent d528a71 commit fca6b15

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: webpack.config.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,11 @@ module.exports = {
236236
"rules": [
237237
{
238238
"enforce": "pre",
239-
"test": /\.js$/,
239+
"test": /\.(js|ts)$/,
240240
"loader": "source-map-loader",
241241
"exclude": [
242-
/\/node_modules\//
242+
/\/node_modules\//,
243+
path.join(__dirname, 'node_modules', '@angular/compiler')
243244
]
244245
},
245246
{

0 commit comments

Comments
 (0)