babel-plugin-import-directory icon indicating copy to clipboard operation
babel-plugin-import-directory copied to clipboard

Can't import from previous directory

Open studiopda opened this issue 6 years ago • 0 comments

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.

studiopda avatar Mar 19 '20 02:03 studiopda