Skip to content

Commit 7ddcc96

Browse files
chore: update typescript (#23523)
* chore: update typescript * use String() Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> * use String() Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> * use String() Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com>
1 parent f743a45 commit 7ddcc96

File tree

20 files changed

+32
-61
lines changed

20 files changed

+32
-61
lines changed

npm/angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@angular/platform-browser-dynamic": "^14.0.6",
1919
"@rollup/plugin-node-resolve": "^11.1.1",
2020
"rollup-plugin-typescript2": "^0.29.0",
21-
"typescript": "~4.2.3",
21+
"typescript": "^4.7.4",
2222
"zone.js": "~0.11.4"
2323
},
2424
"peerDependencies": {

npm/create-cypress-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"mock-fs": "5.1.1",
4242
"shx": "0.3.3",
4343
"snap-shot-it": "7.9.3",
44-
"typescript": "^4.2.3"
44+
"typescript": "^4.7.4"
4545
},
4646
"files": [
4747
"dist",

npm/cypress-schematic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"@types/node": "^18.0.6",
2525
"chai": "4.2.0",
2626
"mocha": "3.5.3",
27-
"typescript": "~4.2.3"
27+
"typescript": "^4.7.4"
2828
},
2929
"peerDependencies": {
3030
"@angular/cli": ">=14.1.0",

npm/mount-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"dependencies": {},
1414
"devDependencies": {
15-
"typescript": "^4.2.3"
15+
"typescript": "^4.7.4"
1616
},
1717
"files": [
1818
"dist"

npm/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"rollup": "^2.38.5",
3131
"rollup-plugin-typescript2": "^0.29.0",
3232
"semver": "^7.3.2",
33-
"typescript": "^4.2.3",
33+
"typescript": "^4.7.4",
3434
"vite": "3.0.3",
3535
"vite-plugin-require-transform": "1.0.3"
3636
},

npm/react18/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"react-dom": "^16",
2121
"rollup": "^2.38.5",
2222
"rollup-plugin-typescript2": "^0.29.0",
23-
"typescript": "^4.2.3"
23+
"typescript": "^4.7.4"
2424
},
2525
"peerDependencies": {
2626
"@types/react": "^18",

npm/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"rollup-plugin-istanbul": "2.0.1",
3030
"rollup-plugin-typescript2": "^0.29.0",
3131
"tailwindcss": "1.1.4",
32-
"typescript": "^4.2.3",
32+
"typescript": "^4.7.4",
3333
"vite": "3.0.3",
3434
"vue": "3.2.31",
3535
"vue-i18n": "9.0.0-rc.6",

npm/vue2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@rollup/plugin-replace": "^2.3.1",
2424
"rollup-plugin-typescript2": "^0.29.0",
2525
"tslib": "^2.1.0",
26-
"typescript": "^4.2.3",
26+
"typescript": "^4.7.4",
2727
"vue": "2.6.12"
2828
},
2929
"peerDependencies": {

npm/webpack-batteries-included-preprocessor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"coffee-loader": "^0.9.0",
2020
"coffeescript": "^1.12.7",
2121
"pnp-webpack-plugin": "^1.7.0",
22-
"ts-loader": "^8.0.2",
22+
"ts-loader": "8.4.0",
2323
"tsconfig-package": "npm:tsconfig@^7.0.0",
2424
"tsconfig-paths-webpack-plugin": "^3.3.0",
2525
"webpack": "^4.44.2"
@@ -41,7 +41,7 @@
4141
"graphql": "14.0.0",
4242
"mocha": "^8.1.1",
4343
"react": "^16.13.1",
44-
"typescript": "^4.2.3"
44+
"typescript": "^4.7.4"
4545
},
4646
"peerDependencies": {
4747
"@cypress/webpack-preprocessor": "^5.4.4"

npm/webpack-preprocessor/examples/use-ts-loader/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"types": "tsc --noEmit --lib es2015,dom --types cypress cypress/e2e/*.ts"
1010
},
1111
"devDependencies": {
12-
"ts-loader": "7.0.4",
13-
"typescript": "^4.2.3"
12+
"ts-loader": "8.4.0",
13+
"typescript": "^4.7.4"
1414
},
1515
"license": "ISC",
1616
"keywords": []

0 commit comments

Comments
 (0)