Created by: borisd
The current started requires developers to use relative paths, leading to code such as:
import '../../../something/else.js'
Since the src
directory is defined as the root for the application, after this change if a module is not found in node_modules
it will automatically search in src
import 'something/else.js'