esbuild jest plugin. You can set the build options of esbuild by passing them as transform options.
npm install -D esbuild esbuild-jest-transform
jest.config.js
"transform": {
"^.+\\.jsx?$": "esbuild-jest-transform"
},
jest.config.js
"transform": {
"^.+\\.jsx?$": [
"esbuild-jest-transform",
{
"target": "es2015",
}
]
},