-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore] Update Typescript to 5.1 (#1478)
Summary: Updates the usual culprits to get TypeScript to v5.1. This change is [fairly minor](https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/). Also fixes two typing issues that were not discovered before (the type checker has learned to detect more kinds of mistakes). Type of change: /kind cleanup Test Plan: `yarn; yarn lint; yarn test; yarn dev`. No new surprises. Signed-off-by: Nick Lanam <[email protected]>
- Loading branch information
Showing
9 changed files
with
578 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
403 changes: 202 additions & 201 deletions
403
src/ui/.yarn/releases/yarn-3.5.1.cjs → src/ui/.yarn/releases/yarn-3.6.0.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "eslint", | ||
"version": "8.41.0-sdk", | ||
"version": "8.42.0-sdk", | ||
"main": "./lib/api.js", | ||
"type": "commonjs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "typescript", | ||
"version": "5.0.4-sdk", | ||
"version": "5.1.3-sdk", | ||
"main": "./lib/typescript.js", | ||
"type": "commonjs" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,8 +27,8 @@ | |
"@types/react-table": "^7.7.1", | ||
"@types/react-window": "^1.8.3", | ||
"@types/segment-analytics": "^0.0.32", | ||
"@typescript-eslint/eslint-plugin": "^5.59.8", | ||
"@typescript-eslint/parser": "^5.59.8", | ||
"@typescript-eslint/eslint-plugin": "^5.59.11", | ||
"@typescript-eslint/parser": "^5.59.11", | ||
"@welldone-software/why-did-you-render": "^4.3.1", | ||
"@yarnpkg/pnpify": "^3.1.0", | ||
"archiver": "^5.0.2", | ||
|
@@ -39,12 +39,12 @@ | |
"concurrently": "^6.2.0", | ||
"css-loader": "^5.2.6", | ||
"cypress": "^9.3.0", | ||
"esbuild": "^0.17.19", | ||
"esbuild": "^0.18.2", | ||
"esbuild-jest": "^0.5.0", | ||
"esbuild-loader": "^3.0.1", | ||
"eslint": "^8.41.0", | ||
"eslint-config-airbnb-typescript": "^16.1.0", | ||
"eslint-import-resolver-node": "^0.3.6", | ||
"eslint": "^8.42.0", | ||
"eslint-config-airbnb-typescript": "^17.0.0", | ||
"eslint-import-resolver-node": "^0.3.7", | ||
"eslint-import-resolver-typescript": "^3.5.5", | ||
"eslint-plugin-cypress": "^2.12.1", | ||
"eslint-plugin-import": "^2.27.5", | ||
|
@@ -69,12 +69,12 @@ | |
"regenerator-runtime": "^0.13.7", | ||
"style-loader": "^2.0.0", | ||
"svg-url-loader": "^6.0.0", | ||
"typescript": "^5.0.4", | ||
"typescript": "^5.1.3", | ||
"url-loader": "^4.1.1", | ||
"webpack": "^5.84.1", | ||
"webpack-bundle-analyzer": "^4.8.0", | ||
"webpack-cli": "^5.1.1", | ||
"webpack-dev-server": "^4.15.0", | ||
"webpack": "^5.86.0", | ||
"webpack-bundle-analyzer": "^4.9.0", | ||
"webpack-cli": "^5.1.4", | ||
"webpack-dev-server": "^4.15.1", | ||
"yaml": "^1.6.0" | ||
}, | ||
"license": "SEE LICENSE IN LICENSE.txt", | ||
|
@@ -164,5 +164,6 @@ | |
"resolutions": { | ||
"@types/react": "^18.0.9", | ||
"multicast-dns": "7.2.3" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.