```js
// module.js
export * as default from './module.js';
export const foo = 1;
export const bar = 2;
```
Prettier actually needs this (currently using an esbuild plugin)
github.com/prettier/pre...
```js
// module.js
export * as default from './module.js';
export const foo = 1;
export const bar = 2;
```
Prettier actually needs this (currently using an esbuild plugin)
github.com/prettier/pre...