Is there a way to configure VS Code to default to using ".js" instead of ".jsx" when automatically generating imports for ".tsx" files?
For example, if we have files foo.tsx
and bar.tsx
, how can we ensure that the import statement for bar in foo reads as import Bat from './bar.js';
?