In package.json, we declare our library as a local file:
dependency. There is a bug in node where
such local dependencies cause imports from the local dependency's code to fail, because of the way symlinks are
handled. For details see nodejs/node#3402.
To fix this behavior, you need to run node
with the option --preserve-symlinks
.