We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, when I compile a ts file which contains following imports
import Navigations from './navigations.tsx';
it outputs exactly the same line
This breaks the code in the browser. I would expect that "tsx" import will be renamed to "jsx"
import Navigations from './navigations.jsx';
Is this somehow achievable? Thanks
PS: I am using meteor, not webpack, which does not resolve imports like import Navigations from './navigations';
import Navigations from './navigations'
The text was updated successfully, but these errors were encountered:
shouldn't it be the issue for meteor to resolve module names without extensions?
Sorry, something went wrong.
Unfortunatelly it is not the case. Only ".js" files are resolved without extension, ".jsx" gets left behind.
looks like a duplicate of #4595
No branches or pull requests
Hi, when I compile a ts file which contains following imports
import Navigations from './navigations.tsx';
it outputs exactly the same line
import Navigations from './navigations.tsx';
This breaks the code in the browser. I would expect that "tsx" import will be renamed to "jsx"
import Navigations from './navigations.jsx';
Is this somehow achievable?
Thanks
PS: I am using meteor, not webpack, which does not resolve imports like
import Navigations from './navigations'
;The text was updated successfully, but these errors were encountered: