We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hello!
Thank you for this great library!
However, it seems that it doesn't treat the .jsx extensions right.
.jsx
It replaces imports like: import { Component } from './component.jsx'; to import { Component } from './component.jsx.js'; which is obviously wrong.
import { Component } from './component.jsx';
import { Component } from './component.jsx.js';
Thanks!