I have been working on a React Typescript repo and have been running into an annoying issue where in jest is not able to resolve imports relative to root dir.
Cannot find module '~lib/dates' from 'utils.ts'
And this how the import looks like in the ponent / utils
import { abc } from '~lib/dates'; // this fails to run
If I change this to a relative path jest test runs works as expected
import { abc } from '../../lib/dates'; // this runs as expected
The same path work for some other directories and I am a bit stumped
import { xyz } from '~ponents/home/constants'; // jest resolves it
import { abc } from '~lib/dates'; // ERR
I tried including moduleNameWrapper
in the jestConfig to see if it jest can resolve the imports correctly but it did not help.
package.json
"jest": {
...
"moduleNameWrapper": {
"^~(.*)$": "<rootDir>/src/$1"
}
}
I could for sure update the VS code setting so that auto imports are resolved relatively to the file and not with the root dir but this has been bugging me for a while. It would be great if anyone has any pointers on how best to resolve this.
I am on a monorepo with the following directory structure
repo
server
client
src
ponents
lib
utils
package.json
I have been working on a React Typescript repo and have been running into an annoying issue where in jest is not able to resolve imports relative to root dir.
Cannot find module '~lib/dates' from 'utils.ts'
And this how the import looks like in the ponent / utils
import { abc } from '~lib/dates'; // this fails to run
If I change this to a relative path jest test runs works as expected
import { abc } from '../../lib/dates'; // this runs as expected
The same path work for some other directories and I am a bit stumped
import { xyz } from '~ponents/home/constants'; // jest resolves it
import { abc } from '~lib/dates'; // ERR
I tried including moduleNameWrapper
in the jestConfig to see if it jest can resolve the imports correctly but it did not help.
package.json
"jest": {
...
"moduleNameWrapper": {
"^~(.*)$": "<rootDir>/src/$1"
}
}
I could for sure update the VS code setting so that auto imports are resolved relatively to the file and not with the root dir but this has been bugging me for a while. It would be great if anyone has any pointers on how best to resolve this.
I am on a monorepo with the following directory structure
repo
server
client
src
ponents
lib
utils
package.json
Share
Improve this question
edited Sep 2, 2020 at 19:21
jonrsharpe
122k30 gold badges268 silver badges475 bronze badges
asked Sep 2, 2020 at 16:41
Sushanth --Sushanth --
55.8k9 gold badges69 silver badges107 bronze badges
3
- What does your repo structure look like? – tmhao2005 Commented Sep 2, 2020 at 17:01
- What transpiler are you using? Babel or Tsc? – tmhao2005 Commented Sep 2, 2020 at 17:04
- I am using a mono repo with babel as a transpiler. Will update the post with the directory structure. – Sushanth -- Commented Sep 2, 2020 at 17:36
2 Answers
Reset to default 5Your implementation looks right. But it looks like the option moduleNameWrapper
was the wrong option, it's supposed to be moduleNameMapper
.
I also have an example as same as you which also uses babel as transplier, it works fine as I added moduleNameMapper
. Here is the my example:
Jest configuration:
https://github./tmhao2005/lerna-demo/blob/master/packages/share/jest.config.js
Here is the file for testing:
https://github./tmhao2005/lerna-demo/blob/master/packages/helper/src/index.ts https://github./tmhao2005/lerna-demo/blob/master/packages/helper/src/index.test.ts
forget the ~
character;
first define root directory to jest (i.e. src/
);
then import your stuff from that root directory; (e.g. import { abc } from 'lib/dates'
)
by the way you can always import your stuff from default root without any configuration like this: import { abc } from 'src/lib/dates'
further read if you are using create-react-app jest absolute import