At the moment, I have to do:
import myPackage from '../foo'
// and then in sub folders
import myPackage from '../../foo'
It would be great if the following was possible, too:
import myPackage from 'this/foo'
// and then in sub folders it's still just:
import myPackage from 'this/foo'
However, I don't know whether it is possible. But it would be awesome.