es6 deeper interpreted imports
Since es6 imports are static, is it possible for WebStorm to do a better job at resolving nested / deeper imports.
A simple example of using three files import / exports:
fileA.js
export const CONST = 'CONST';
fileB.js
import * as myConst from './fileA';
export {myConst};
fileC.js
import {myConst} from './fileB';
console.log(myConst.CONST);
fileA shows the following error, however the variable CONST is being used

fileC shows the following error, however it should be able to resolve the myConst.CONST

Thank you.
Please sign in to leave a comment.
In addition if this resolution was better if would be able do a much better job of "Find Usages" and other smart features.
this issue is tracked as https://youtrack.jetbrains.com/issue/WEB-20669, please follow it for updates.
thank you, you can close this issue