E0066: exporting requires '{' and '}'
When exporting a class, function, or variable, you must either export while
declaring or export separately from declaring. When exporting separately, it is
a syntax error to write export
followed by the name of the thing you want to
export:
To fix this error, add {
and }
around the exported names:
Alternatively, write the default
keyword after export
:
Introduced in quick-lint-js version 0.2.0.