Found it! The libs need to be polyffiled but, as I move the structure of my mono-repo to npm v7 workspaces, it was not polyffied anymore because the dependencies are now centralized at the root of the repo.
Settings the path in the bundle settings solved it.
rollupPlugins: {
after: [
nodePolyfills({
include: ['node_modules/**/*.js', '../../node_modules/**/*.js']
})
]
}
v0.10.0 is alright once polyffied