it is a absolute path without suffix, try to locate it with .js or .jsx suffixes
it is a relative path, make it absolute to avoid relying on the current dir be the project root, so that it is feasible to restore the default-directory after call importjs to fix issue #4
Fix goto-value in cases:
Given this dir layout:
So that cases below should work as expected:
import EbookList from './components/EbookPage'
in App.js, goto EbookList, components/EbookPage.js openedimport { fetchEbooks } from '../actions/ebooks'
in components/EbookPage.js, goto fetchEbooks, actions/ebooks.js openedimport rootReducer from './reducers'
in configureStore.js, goto rootReducer, reducers/index.js opened