瀏覽代碼

Remove an unnecessary exclude from Webpack

j8
Hristo Terezov 8 年之前
父節點
當前提交
c6f81668de
共有 1 個文件被更改,包括 1 次插入4 次删除
  1. 1
    4
      webpack.config.babel.js

+ 1
- 4
webpack.config.babel.js 查看文件

@@ -15,10 +15,7 @@ const config = {
15 15
         loaders: [{
16 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 19
             loader: 'babel',
23 20
             test: /\.js$/
24 21
         },{

Loading…
取消
儲存