folderA/myFile from folderB/myOtherFile. .playground folder as root and imports would complain if I would use import { foo } from '~/folderB/myOtherFile when running the playground app. It rather expects import { foo } from '~/../folderB/myOtherFile. But using later import strategy my code would break when running the actual app since the relative path is not correct anymore.