Browse Source

Remove an unnecessary exclude from Webpack

master
Hristo Terezov 9 years ago
parent
commit
c6f81668de
1 changed files with 1 additions and 4 deletions
  1. 1
    4
      webpack.config.babel.js

+ 1
- 4
webpack.config.babel.js View File

15
         loaders: [{
15
         loaders: [{
16
             // Transpile ES2015 (aka ES6) to ES5.
16
             // Transpile ES2015 (aka ES6) to ES5.
17
 
17
 
18
-            exclude: [
19
-                __dirname + '/modules/RTC/adapter.screenshare.js',
20
-                __dirname + '/node_modules/'
21
-            ],
18
+            exclude: __dirname + '/node_modules/',
22
             loader: 'babel',
19
             loader: 'babel',
23
             test: /\.js$/
20
             test: /\.js$/
24
         },{
21
         },{

Loading…
Cancel
Save