Skip to content

Commit

Permalink
feat!: bump Firefox browser support (55+ => 87+) (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov authored Jan 10, 2024
1 parent ea3297d commit c56b4ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Desktop
Chrome >= 74
Firefox >= 55
Firefox >= 87
Safari >= 12.1
Opera >= 62
Edge >= 74
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {ChangeDetectionStrategy, Component} from '@angular/core';
export class BrowserSupportComponent {
readonly desktopBrowsers = [
{name: 'Google Chrome', version: '74+'},
{name: 'Mozilla Firefox', version: '55+'},
{name: 'Mozilla Firefox', version: '87+'},
{name: 'Safari', version: '12.1+'},
{name: 'Opera', version: '62+'},
{name: 'Edge (Chromium)', version: '74+'},
Expand Down
4 changes: 3 additions & 1 deletion projects/demo/tsconfig.app.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app"
"outDir": "../out-tsc/app",
"target": "ES2022",
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"compilationMode": "full"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"sourceMap": true,
"module": "es2020",
"jsx": "react-jsx",
"target": "es2015",
"target": "es2017",
"lib": ["es2017", "es2018.asynciterable", "es2019.object", "es2019.string", "dom"],
"checkJs": false,
"paths": {
Expand Down

0 comments on commit c56b4ea

Please sign in to comment.