Hello.
Is it possible to invoke oxc-node without --import @oxc-node/core/register?
In my scripts today, I use tsx.is, like this command in my package.json:
"migrator": "tsx scripts/sql-migrator.mjs",
I can get that working using oxc-node with this:
"migrator": "node --import @oxc-node/core/register scripts/sql-migrator.mjs",
But it's convenient and readable to not have to register something. Is that supported, or can it be in a similar way?