for example, I have a file: modules/my-module/index.js, where
export { default as schema } from './schema.graphqls';
and get
var err = new SyntaxError(message);
^
Of course, I can do that
import schema from './schema.graphqls';
export { schema };
but it doesn't look good