Oh my, has it already been 2 weeks ago since I had the trouble of migrating?
Well… I was able to get my meteor project running again. But now I’m still strugling with some babel syntax.
Apparently, my testrunner (ava) want’s modules to be prefixed with module. But meteor seems to crash on it. Does anyone of you have any idea if meteor is still doing something specific with the .babelrc file?
This is how ava requires it to be, otherwise it will throw: Couldn't find plugin "styled-jsx/babel" relative to directory
{
"presets": ["@babel/preset-react"],
"plugins": ["module:styled-jsx/babel"],
}
But, Meteor crashes on that, it wants to have it the old way:
{
"presets": ["@babel/preset-react"],
"plugins": ["styled-jsx/babel"],
}