LoginSignup
2
0

More than 5 years have passed since last update.

You must pass the 'pipelineProposal' option to @babel/preset-stage-0 が出た時の対処法

Posted at

なんとなくBabelのversionをv7.0.0-beta.52に上げた時にエラー出たのでメモがてらあげてみた。

詳しくはこちらのコミット↓

  "presets": [
    [
      "@babel/preset-stage-0",
      {
        "pipelineProposal": "minimal"
      }
    ],
  ]

これでエラーが消えます。ちなみに僕が調べたところminimal以外は指定してもダメそう。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0