8000 Support browsers from before 2020 by L3P3 · Pull Request #4579 · coder/code-server · GitHub
[go: up one dir, main page]

Skip to content

Support browsers from before 2020 #4579

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

Merged
merged 10 commits into from
Dec 15, 2021
Next Next commit
Support browsers from before 2020
As reported in #2825, #2826 and #3051, almost everything works in older browsers. This setting here prevented me from updating and I think it is an obvious enhancement to not restrict to browsers from 2020+. There should not be any measurable downsides of this change since es6 and es2020 are pretty similar with only minor differences.
  • Loading branch information
L3P3 authored Dec 5, 2021
commit cf35667060ddcb0b85b3c187204156b61e684a25
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es2020",
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
Expand Down
0