-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Hi there! Thank you for maintaining this library. My colleagues and I recently stumbled onto a bug that left us scratching our heads for a while, until we figured out the specific reason our build process was failing for only one person on the team.
We concluded that resolve-tspaths just doesn't handle paths with special characters well.
To reproduce this, have a path such as:
/home/user/Projects/MyProject (MP)/tsconfig.json
Then running resolve-tspaths --verbose in that directory. This will result in resolve-tspaths detecting no files to process, even though there are such files. We saw that filesToProcess from the --verbose output was just empty in this case. The fix for us was simply changing the path to something like:
/home/user/Projects/MyProject/tsconfig.json
Which works perfectly fine! Spaces didn't seem to be an issue in my tests.
Thanks again, and don't hesitate to reach out if you need further reproduction steps.