When importing ES6 modules on my Windows pc I'm able to easily use:
import {Person} from '/person';
However when I switch over to my Mac I'd have to use:
import {Person} from './person.js';
Is there a way to disable the use of the .js extension? I'm using MAMP.
Thank you.