


It's done this way to meet specification requirements. The most popularly recommended base Babel presets ( es2015 / env / latest) include the babel-plugin-transform-es2015-template-literals transform to make tagged template literals work in older browsers, but there is a caveat: output of that transform is quite verbose. With Babel, you're likely transpiling ES2015+ JavaScript to ES5-compliant code for older browser support. Wait, transpiling tagged template literals? Doesn't Babel do this natively? 🤔 Switching IDEs can be a bit annoying (and a RAM hog if you have both open at the same time), but it allows me to use the best tool for the job, so I find it's worth it in the end.This plugin transpiles styled-components tagged template literals down to a smaller representation than what Babel normally creates. In reality, I usually have both IDEs open at the same time and switch to the one that meets my needs best for the particular task I'm working on. Also, I may find myself missing GitHub copilot suggestions when coding in WebStorm, but right now I don't feel that way (possibly because I haven't used GitHub copilot enough). the Prisma extension that can format prisma schema files on save). That being said, there are some times where I'm coding in WebStorm and want to benefit from a VSCode extension (e.g. I've found myself switching over to WebStorm while working in VSCode if I need to do some significant refactoring. If I had to pick a single editor, I would pick WebStorm due to its superior refactoring capabilities. The past couple of weeks I've been switching between both VSCode and WebStorm for the sake of being able to compare both editors accurately. The only thing I've noticed that WebStorm does better than VSCode is that WebStorm will switch to the correct TypeScript version based on which file you're editing in the monorepo, whereas VSCode doesn't do that. Both editors seem to be able to handle opening projects at the root of a monorepo and still provide working autocompletion and formatting on save. With React Native you can develop native mobile applications for iOS and Android using JavaScript and React.
