anc95 / jest-chain-transform

Using multiple transformers for one type of rule file in jest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jest-chain-transform

Node.js Package Node.js CI

jest-chain-transform enables jest can transform file by multiple transformers.

install

npm

npm install jest-chain-transform -D

yarn

yarn add jest-chain-transform -D

config

// jest.config.js
module.exports = {
  transform: {
    "\\.[jt]sx?$": [
      'jest-chain-transform',
      {
        transformers: [
          'path-of-your-custom-transformer', 'ts-jest'
        ]
      }
    ]
  },
}

Jest will transform all files that match \\.[jt]sx?$ by path-of-your-custom-transformer and 'ts-jest' in turn.

If you need to pass extra option to transform, you can write config as follow

// jest.config.js
module.exports = {
  transform: {
    "\\.[jt]sx?$": [
      'jest-chain-transform',
      {
        transformers: [
          ['path-of-your-custom-transformer', { ... }],
          ['babel-jest', { ... }]
        ]
      }
    ]
  },
}

option

interface Config {
  /**
   * multiple transforms
   * @example
   * ```js
   * ['babel-jest', 'ts-jest']
   * [
   *   ['babel-jest', { }],
   *   ['ts-jest', { }]
   * ]
   * ```
   */
  transformers: string[] | [string, Record<string, any>][];
}

About

Using multiple transformers for one type of rule file in jest

License:MIT License


Languages

Language:TypeScript 77.4%Language:JavaScript 20.5%Language:Shell 2.2%