LoginSignup
8
4

More than 3 years have passed since last update.

Nodeのバージョンを12に上げたら`Cannot find module '@babel/compat-data/corejs3-shipped-proposals'`というエラーが出て困った

Posted at

Nodeのバージョンを12に上げた際、Cannot find module '@babel/compat-data/corejs3-shipped-proposals'というエラーが出たので解決法をメモ

結論

@babel/coreと@babel/preset-envのバージョンを以下に指定したら解消された。

"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",

参考にしたリンク
https://github.com/storybookjs/storybook/issues/10477

8
4
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
8
4