I have noticed that VS Code is able to navigate the relative import paths on Ember apps but it does not understand the import location during development when using the app name like so:
import SomeObject from '../../objects/some-object';
vs
import SomeObject from 'app-name/objects/some-object';
Does anyone know if there is a setting in VS code that would help it navigate to definition during development?