Jest esbuild
A Jest esbuild transformer
Install
npm install -D jest-esbuildSet transform TypeScript file to jest-esbuild inside jest.config.js
{
"transform": {
"^.+\\.tsx?$": "jest-esbuild"
}
}Specify esbuild options
const esbuildOptions = {}
module.export = {
transform: {
'^.+\\.tsx?$': [
'jest-esbuild',
esbuildOptions
]
}
}License
MIT License © 2021 hannoeru