jest-flow-transform
v1.0.1
Published
Custom jest transformer to remove flow type annotations
Downloads
1,014
Maintainers
Readme
Jest Flow Transform
A transformer for jest that removes flow type annotations from JavaScript files.
Usage
Add as a transformer in your package.json
(See Jest Docs).
{
"jest": {
"transform": {
"^.+\\.js(?:\\.flow)?$": "jest-flow-transform"
}
}
}