repro case:
// a.js
const foo = 'bar';
// b.js
const foo = 'baz';
// index.html
<script type="module">
import './a.js';
import './b.js';
</script>
This will cause a SyntaxError: redeclaration of const foo on Firefox. I assume this may happen to other transformed browsers
repro case:
This will cause a
SyntaxError: redeclaration of const fooon Firefox. I assume this may happen to other transformed browsers