We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I install now the package flow-ide, and when I import the type flow like:
import type { Acao } from 'BPMTypes/Instancia';
it's not working, only work when I import like:
import type { Acao } from '../../types/Instancia';
I'm using the alias of webpack:
module.exports = { resolve: { alias: { 'BPMTypes': path.resolve(__dirname, '../src/bpm/types'), }, }, };
The text was updated successfully, but these errors were encountered:
FYI: you can solve this by configuring the alias mapping in your .flowconfing [options] section:
.flowconfing
[options]
https://flow.org/en/docs/config/options/#toc-module-name-mapper-regex-string
[options] module.name_mapper='^SomeAlias/' ->'<PROJECT_ROOT>/vendor/some/other/path/'
Sorry, something went wrong.
No branches or pull requests
Hi, I install now the package flow-ide, and when I import the type flow like:
import type { Acao } from 'BPMTypes/Instancia';
it's not working, only work when I import like:
import type { Acao } from '../../types/Instancia';
I'm using the alias of webpack:
module.exports = { resolve: { alias: { 'BPMTypes': path.resolve(__dirname, '../src/bpm/types'), }, }, };
The text was updated successfully, but these errors were encountered: