parcel src/index.html 的なコマンドを実行すると Cannot find module 'babel-plugin-babel-root-slash-import' と言われる場合
こんな感じの .babelrc
を用意してあげると良いでしょう。
{ "plugins": [ ["module-resolver", { "root": ["./src"] }] ] }
あとそれから
Uncaught ReferenceError: regeneratorRuntime is not defined
とか言われたら require('babel-polyfill')
とかしておけばいいでしょう。
おしまい