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
My config:
{ "ecmaVersion": 6, "libs": [ "ecma5", "ecma6", "browser", "react" ], "dontLoad": [ "**/node_modules/**" ], "plugins": { "node": {}, "es_modules": { "baseUrl": "./" }, "webpack": { "configPath": "./build/fake.js" } } }
I couldn't find a clear dependence, but often go to definition does not work when working with export default.
Example:
// app-platform/containers/app/container/index.js import { connect } from 'react-redux' import { composeSelectors } from 'app-platform/helpers/selectors' import * as environment from 'app-platform/selectors/environment' import * as locale from 'app-platform/selectors/locale' import App from 'app-platform/components/app/container' const selector = composeSelectors({ locale: locale.get, environment: environment.get }) export default connect(selector)(App)
And this doesnt work
import App from 'app-platform/containers/app/container'
What i do wrong?
The text was updated successfully, but these errors were encountered:
After refactoring first file it now work..
Sorry, something went wrong.
Yep, appears to be a bug in ternjs: ternjs/tern#896.
No branches or pull requests
My config:
I couldn't find a clear dependence, but often go to definition does not work when working with export default.
Example:
And this doesnt work
What i do wrong?
The text was updated successfully, but these errors were encountered: