After adding decko
(Support for decorators) as well as adding support for experimetalDecoractors
in my tsconfig.js
i'm seeing something similar on my end, but i think you can do this:
{
"presets": ["next/babel"],
"plugins": [["@babel/plugin-proposal-decorators", { "legacy": true }]],
"env": {...}
}
Seems like you can have global plugins for all the things, vs setting it all up for each one. would be yawnsome otherwise.