jsconfig-paths-jest-mapper

Use this to load modules whose location is specified in the `paths` section of `jsconfig.json` when using jest.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
jsconfig-paths-jest-mapper
1.0.06 years ago6 years agoMinified + gzip package size for jsconfig-paths-jest-mapper in KB

Readme

jsconfig-paths-jest-mapper
Use this to load modules whose location is specified in the paths section of jsconfig.json when using jest.

How to install

yarn add --dev jsconfig-paths-jest-mapper

or
npm install --save-dev jsconfig-paths-jest-mapper

How to use

In your jest config add this:
const JsConfigPathsMapper = require('jsconfig-paths-jest-mapper');

module.exports = {
  ...
  moduleNameMapper: new JsConfigPathsMapper(/* { configFileName: "path/to/jsconfig.json" } */);
  ...
}

Options

configFile (string) (default='jsconfig.json')

Allows you to specify where to find the configuration file.

How to test

To run the provided tests:
yarn test