@wesm yes definitely, I think that was the plan all along. I've also run into 
this issue with webpack, so we should fix this before 0.4.0. I'm not entirely 
sure how this webpack flag works, since the TS does compile down to compliant 
syntax for CommonJS and ESModules:

`Arrow.js`:
```js
const table_1 = require("./table");
exports.Table = table_1.Table;
```

and the corresponding one in the ESModules file `Arrow.mjs`:
```js
import { Table, CountByResult } from './table';
/* ... */
export { Table, CountByResult };
```

@tarekrached do you have any ideas on what the fix would be?

[ Full content available at: https://github.com/apache/arrow/issues/2656 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to