westandy commented on issue #9752:
URL: https://github.com/apache/arrow/issues/9752#issuecomment-809657482


   @trxcllnt  - Neither `resolve{ enforceExtension: false}` nor does adding 
`.mjs` to the list of extensions fix any of the issues.
   
   ```
     resolve: {
       enforceExtension: false,
       extensions: ['.ts', '.js', '.mjs']
     },
   ```
   This gives me the same error as above.   The only thing that seems to fix it 
is if I specify the sub file in the directory (without the extension).
   
   ```
   import { Table } from 'apache-arrow';   // Does not build
   ```
   
   ```
   import { Table } from 'apache-arrow/table'; // Builds with or with out the 
`resolve` updates.
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to