且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Babel CLI非常慢

更新时间:2023-02-25 19:01:53

您可能也在编译node_modulesbower_components.

您可以尝试在项目.babelrc中添加ignore属性,如下所示:

You can try adding the ignore property in your projects .babelrc like so:

{
  ...
  "ignore": /(node_modules|bower_components)/
  ...
}

希望这可以解决您的问题

Hope this solves your issue