Currently, when exporting a default object, it assigns it using `var` which is unnecessary. Example: ``` export default { foo: 1 }; ``` `rollup ./test.js` ``` var test = { foo: 1 }; ``` Instead, it should use `const`.
Currently, when exporting a default object, it assigns it using
varwhich is unnecessary.Example:
rollup ./test.jsInstead, it should use
const.