I know that it is possible to import several files from one directory like this:
import { a, b, c } from 'uselessthings/letters/'
But is it possible to be able to somehow imoprt evreything from a folder, something like this?
import './uselessthings/letters/*'
And have that import evreything from the letters folder?