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
WebStorm (IntelliJ) IDE cannot auto-complete redux-tools functions from the last @redux-tools/react package.
@redux-tools/react
Steps to reproduce:
yarn init -y yarn add @redux-tools/react
Create a simple .js file. This file is able to use autocomplete feature only for these functions:
.js
import { makeMiddlewareEnhancer, makeReducersEnhancer } from '@redux-tools/react';
They are exported with aliasing, e.g. export { name as differentName } from .... The rest is unavailable.
export { name as differentName } from ...
The text was updated successfully, but these errors were encountered:
I think the solution might be to replace export from syntax with manual importing and exporting.
export from
Sorry, something went wrong.
No branches or pull requests
WebStorm (IntelliJ) IDE cannot auto-complete redux-tools functions from the last
@redux-tools/react
package.Steps to reproduce:
Create a simple
.js
file. This file is able to use autocomplete feature only for these functions:They are exported with aliasing, e.g.
export { name as differentName } from ...
. The rest is unavailable.The text was updated successfully, but these errors were encountered: