React Native: Add Alias Path Module Resolution to Your Project
Summary: Import project modules directly without worrying about their relative root directory locations
The problem
If you have ever had to deal with this module path headache:
import HomeScreen from '../../../../screens/HomeScreen;
import Header from '../../../../components/Header';
import {…