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
And I have a main field specified in my package.json: "main": "src/main.js". If I have a relative import of index.js in SomeModule.js, it gets transpiled to the main field from the package.json.
importutilsfrom'.';// gets transpiled to '../../main'importutilsfrom'./';// works
Will try to look into where the resolution is coming from a bit more after work today.