Remove an unnecessary exclude from Webpack

This commit is contained in:
Hristo Terezov 2016-09-28 17:07:15 -05:00 committed by Lyubomir Marinov
parent 43d0582b2f
commit c6f81668de
1 changed files with 1 additions and 4 deletions

View File

@ -15,10 +15,7 @@ const config = {
loaders: [{
// Transpile ES2015 (aka ES6) to ES5.
exclude: [
__dirname + '/modules/RTC/adapter.screenshare.js',
__dirname + '/node_modules/'
],
exclude: __dirname + '/node_modules/',
loader: 'babel',
test: /\.js$/
},{