You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I`m using version 3.2.0 of this module. when I import a file like this in the code
import { something } from '.';
the app itself works but if I run the unit tests (jest) it will fail because it cannot import the file. If I change the "." to "./index" , tests work fine.
I used another package called babel-plugin-root-import which is similar to this package and it does not have this issue.
The text was updated successfully, but these errors were encountered:
Why not consider this a Bug ?
There are many projects that use import xxx from '.'example
I think babel-plugin-module-resolver should support import xxx from '.' @fatfisz
I`m using version 3.2.0 of this module. when I import a file like this in the code
the app itself works but if I run the unit tests (jest) it will fail because it cannot import the file. If I change the
"."
to"./index"
, tests work fine.I used another package called
babel-plugin-root-import
which is similar to this package and it does not have this issue.The text was updated successfully, but these errors were encountered: