Created by: joshwilsonvu
Hi all,
I have a non-monorepo use case where I'd like to import ES6 files from outside of the src
folder via symlink, as recommended by a CRA error message.
Importing through a symlink gives me this issue, where the file is imported but not processed with the rest of the code under src/
, as one would expect. My PR seems to solve it by treating symlinked files as if they were under src/
, according to the well-received solution here.
Demo repo, with screenshots. The solution works at least for files under the project root.
Fixes #3547.