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