在 loader 上加入 exclude 参数,去掉 node_modules 目录下的代码。 { module: { loaders: [{ test: /\.js$/, loader: 'babel-loader', include: [ ], exclude: /node_modules/ }] } }
在 loader 上加入 exclude 参数,去掉 node_modules 目录下的代码。