Flow typechecking fail when importing via absolute path with react-native
Open
- Dominant language
- Rust
- Stars
- 22.3k
- Forks
- 1.9k
- PR merge metrics
- No merged PRs in 30d
Description
Flow doesn't correctly resolve types when it is imported via absolute path.
I'm using react-native.
Here is an example:

/src/package.json (according to [this](https://medium.com/@davidjwoody/how-to-use-absolute-paths-in-react-native-6b06ae3f65d1)
```
{ "name": "@src" }
```
/.flowconfig
```
module.name_mapper='@src/helpers/verseToStrong' -> '/src/helpers/verseToStrong.js' // testing directly in case this was related with bad regexp
module.name_mapper='^@src\(.*\)$' -> '/src/\1'
```
Contributor guide
Assessment
This issue has not been assessed yet.