Description
Suggestion
π Search Terms
default target es3 es5
β Viability Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, new syntax sugar for JS, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
β Suggestion
Continuing #10117: can we increase the default TypeScript target to newer than ES3? Let's say, ES5 to start?
Starting suggestion: how about introducing these breaking changes with TypeScript's major version numbers?
- Increase to ES2015 for 5.0
- Increase to ES2016 for 6.0
- Alternately, as TypeScript major versions have hit at roughly one every two years, it might make sense to jump two years per version and skip to ES2017
- ...and so on
An alternate strategy would be bumping to ES5 first and pushing subsequent releases later. ES2015 is so well-supported, though, it'd be nice to skip straight to supporting let
, const
, etc.
π Motivating Example
I know the TypeScript team is loath to introduce breaking changes, especially when it comes to emit and default settings. Throwing in semantic versioning probably isn't doing this issue any favors either.
But!
- ES2015 support is significantly better now than it was a few years ago. IE is reaching consumer EOL in June 2022. Per https://kangax.github.io/compat-table/es6 all desktop browsers, mobile browsers, and server browsers with >=1% market share have 100% ES2015 syntax support (I think?).
- ES3 and ES5 emit are harder to read than ES2015+ because classes,
for
/of
, and so on need to be transpiled - Many runtime APIs such as
Array.from
aren't supported in <= ES5
This may be a breaking change for projects that target old runtimes and use TypeScript's emit and don't specify target... but that's what major versions are for, right? π
π» Use Cases
Increasing default targets to emit code much cleaner in modern browsers gives a nicer default output for new TypeScript projects. For beginners to TypeScript in particular, it makes the learning curve a little easier as they won't have to mess with configuration options to be able to use basic features.