I have a folder called actions at the root of my project and when I import it using an absolute path, flow complains that it cannot find the folder. But when I use relative paths, it works. Is there something I'm doing wrong?
import ax from 'actions' // Doesn't work
import ax from '../actions' /// Works