ice-lab / build-scripts

:octopus: 基于 Webpack 的插件化工程构建工具,支持快速建设一套开箱即用的工程方案。
MIT License
396 stars 75 forks source link

编译的时候排除node_modules如何设置 #134

Open starsoul666 opened 1 year ago

starsoul666 commented 1 year ago

onGetWebpackConfig((config) => { // config.entry('src/index');

config.module
  .rule('tsx')
  .use('babel-loader')
  .tap((options) => {
    options.exclude = /node_modules/;
    return options;
  });

}

自己写了一个插件,使用这个没有生效