0.0.6 • Published 3 months ago

jest-chain-transform v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

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>][];
}