我要在我的webapp项目中使用useBuiltIns: „usage“
,但添加其他填充,这只是我使用的node_module所必需的。
我发现,我可以使用next-plugin-transpile-modules或overriding the excludes
from babel-loader
之类的方法再次在客户端项目中使用babel编译部分/全部的node_modules。但是,我宁愿不重新编译自己的node_modules,而宁愿只注入必要的polyfill。
如果我能以某种方式手动为客户端项目中的node_modules导入polyfill没关系。那还是应该尊重preset-env
。而且我想利用useBuiltIns: „usage“
作为我的客户代码。
关于如何实现这一目标的任何提示?