包详细信息

jest-flow-transform

philbot965ISC1.0.1

Custom jest transformer to remove flow type annotations

jest, flow, transform, transformer

自述文件

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"
    }
  }
}