I have a NodeJS backend, where I would like to use the new alternative RegExp engine in v8. This is enable when I start node like this node --enable-experimental-regexp-engine some-script.js
.
When running vitest, how can I pass this flag? In my package.json my test script is simply this:
"scripts": {
"test": "vitest --reporter=verbose",
},