Is it possible to pass options to ES6 imports?
How do you translate this:
var x = require(\'module\')(someoptions);
to ES6?
You just need to add these 2 lines.
import xModule from 'module'; const x = xModule('someOptions');