You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't import modules that are parent to the main index.js, so the following don't work:
importotherfrom'./other.js';importparntfrom'../parent.js';// <-- can't do thisconsole.log('indexjs'+other()+parnt());
I have JS code that's shared amongst 2 projects so I put the code in the parent folder.
My workaround now is to symbolic link the parent folder with all the shared code to each of the project folder.
The text was updated successfully, but these errors were encountered:
I can't import modules that are parent to the main index.js, so the following don't work:
I have JS code that's shared amongst 2 projects so I put the code in the parent folder.
My workaround now is to symbolic link the parent folder with all the shared code to each of the project folder.
The text was updated successfully, but these errors were encountered: