onGetWebpackConfig((config) => { // config.entry('src/index'); config.module .rule('tsx') .use('babel-loader') .tap((options) => { options.exclude = /node_modules/; return options; }); } 自己写了一个插件,使用这个没有生效