I am trying to use import instead of require for all modules in my project, but some older npm modules only have instructions for require.
In the case of 'isomorphic-fetch' I can't find the proper way to use import:
works
require('isomorphic-fetch') fails
import 'isomporphic-fetch' import Something from 'isomorphic-fetch' // error Can't resolve 'isomporphic-fetch' from Project/src/js/ Converting to import does work with the es6-promise module.
works
require('es6-promise').polyfill() works
import Something from 'es6-promise' Something.polyfill()
--experimental-modules, Webpack, etc?