Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
A Jest transformer using esbuild
| Date | Stars |
|---|---|
| 2026-07-24 | 520 |
| 2026-07-25 | 520 |
| 2026-07-28 | 520 |
| 2026-07-30 | 520 |
| 2026-08-06 | 520 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
# esbuild-jest
### A Jest transformer using esbuild
With this transformer you can use and transform (ts, js, tsx and jsx) files
[](https://www.npmjs.com/package/esbuild-jest)

## Install
```bash
npm install --save-dev esbuild-jest esbuild
```
#### Setting up Jest config file
esbuild-jest transformer should be used in your Jest config file like this:
```js
{
"transform": {
"^.+\\.tsx?$": "esbuild-jest"
}
}
```
#### Setting up Jest config file with transformOptions
```typescript
export interface Options {
jsxFactory?: string
jsxFragment?: string
sourcemap?: boolean | 'inline' | 'external'
loaders?: {
[ext: string]: Loader
},
target?: string
format?: string
}
```
```js
{
"transform": {
"^.+\\.tsx?$": [
"esbuild-jest",
{
sourcemap: true,
loaders: {
'.spec.ts': 'tsx'
}
}
]
}
}
```
> Note: if you are using tsconfig.json and jsconfig.json with "paths", Please look `alias-hq` and there documentation https://github.com/davestewart/alias-hq/blob/master/docs/integrations.md
Excerpt of 1,227 characters
Read on GitHub43
Alec Larson
2
1
1
Would you bet a product on this? Bounded 0–100 and slow moving.
matched fp:f9dad29452ca68a9, topic:transformer