Skip to content

Commit

Permalink
Update browser support baseline
Browse files Browse the repository at this point in the history
Update the browser support baseline to versions of the major browsers that were
released approximately 3 years ago. This covers 99.7% of requests to the LMS app
in the last day.
  • Loading branch information
robertknight committed Jul 4, 2024
1 parent 56e5f2b commit 205801b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
"typescript": "^5.0.2",
"wrap-text": "^1.0.7"
},
"browserslist": "chrome 70, firefox 70, safari 11.1",
"browserslist": "chrome 92, firefox 90, safari 14.1",
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
Expand Down
4 changes: 2 additions & 2 deletions src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"allowSyntheticDefaultImports": true,

"checkJs": true,
"lib": ["es2020", "dom", "dom.iterable"],
"lib": ["es2021", "dom", "dom.iterable"],
"jsx": "react-jsx",
"jsxImportSource": "preact",
"module": "es2020",
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"target": "ES2020",
"target": "ES2021",

// Let argument to catch statement be `any` rather than `unknown`.
"useUnknownInCatchVariables": false,
Expand Down

0 comments on commit 205801b

Please sign in to comment.