$ cnpm install jest-esbuild
A Jest esbuild transformer
npm install -D jest-esbuild
Set 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
]
}
}
MIT License © 2021 hannoeru
Copyright 2013 - present © cnpmjs.org | Home |