Is there a way to configure node.js to use absolute paths for imports? – Ubuntu
What I'm basically trying to achieve is to be able to do: import {thingOne, thingTwo} from 'functions/myFunctions.js' instead of import {thingOne, thingTwo} from '../../functions/myFunctions.js' Paths are obviously hypothetical. The idea is that the functions directory exists in the root of…