I'm using the es6-module-transpiler, esprima and JSHint with esnext: true
options. JSHint complains when I put:
export default = { some: 'thing', other: 'thing' };
But esprima complains when I use
export default { some: 'thing', other: 'thing' };
The spec says
export default AssignmentExpression ;
Which makes me think that JSHint needs updating and esprima is properly bombing out because there isn't an assignment. Can someone be the deciderer for me here?