tsconfig / bases

Hosts TSConfigs to extend in a TypeScript app, tuned to a particular runtime environment
MIT License
6.2k stars 231 forks source link

create-react-app: post-ie11 world #120

Open mfulton26 opened 2 years ago

mfulton26 commented 2 years ago

With Internet Explorer 11 support ended what does this mean for what version of ES we can target for web applications created through create-react-app?

I am looking forward to being able to use async generators, etc. without high transpilations once they are natively supported by all of my target platforms. 😄

orta commented 2 years ago

CRA uses babel to transpile, which means our job in tsconfig/bases is to replicate that setup ( e.g. copying npx create-react-app --template typescript my-app )

my recommendation if you want this to be bumped, is to get the changes applied in the CRA repo and we'll update here 👍🏻

(or maybe we're already out of date, its worth a check )

mfulton26 commented 2 years ago

https://github.com/facebook/create-react-app/issues/12593