babel-plugin-import-directory
babel-plugin-import-directory copied to clipboard
Can't import from previous directory
Great plugin but missing functionality to import from a previous directory.
For example the following doesn't work:
import { Layout } from '../components'
As a workaround you can use:
import { Layout } from './../components'
Will consider doing a pull request in the future to add this functionally once I get my head around the babel plugin world.