I have import statements in my javascript file similar to the following:
import defaultExport1 from "module-name";
import defaultExport2 from "module-name";
Do I need the modules where the exports are located locally on my computer in order for the code to work?