소스 검색

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…
취소
저장