-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Increase default targets over time #47572
New issue
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
Comments
I feel like that tweet could be added as evidence lol |
If this is going to introduce a breaking change, how about changing the default target to esnext instead? Then there would be no need to keep changing the default in the future and it would move typescript toward the goal of a type checker instead of transpiler. |
Consider also defaulting |
Default target in 5.0 is now ES5 and I suspect we might have appetite for ES6 in 6.0 |
Thanks @RyanCavanaugh! Can you comment on my suggestion about defaulting to |
ESNext includes features that work in 0% of runtimes, like standard decorators. Seems very aggressive. |
Suggestion
π Search Terms
default target es3 es5
β Viability Checklist
My suggestion meets these guidelines:
β 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?
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!
for
/of
, and so on need to be transpiledArray.from
aren't supported in <= ES5This 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.
The text was updated successfully, but these errors were encountered: