Skip to content

Commit 576d198

Browse files
committed
Add support for TypeScript 4.8.
1 parent eee0ce6 commit 576d198

File tree

81 files changed

+670
-515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+670
-515
lines changed

apps/api-extractor/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"resolve": "~1.17.0",
4949
"semver": "~7.3.0",
5050
"source-map": "~0.6.1",
51-
"typescript": "~4.7.4"
51+
"typescript": "~4.8.3"
5252
},
5353
"devDependencies": {
5454
"@rushstack/eslint-config": "workspace:*",

apps/heft/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@
6262
"@types/semver": "7.3.5",
6363
"colors": "~1.2.1",
6464
"tslint": "~5.20.1",
65-
"typescript": "~4.7.4"
65+
"typescript": "~4.8.3"
6666
}
6767
}

apps/heft/src/plugins/TypeScriptPlugin/TypeScriptBuilder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ const OLDEST_SUPPORTED_TS_MAJOR_VERSION: number = 2;
115115
const OLDEST_SUPPORTED_TS_MINOR_VERSION: number = 9;
116116

117117
const NEWEST_SUPPORTED_TS_MAJOR_VERSION: number = 4;
118-
const NEWEST_SUPPORTED_TS_MINOR_VERSION: number = 7;
118+
const NEWEST_SUPPORTED_TS_MINOR_VERSION: number = 8;
119119

120120
export class TypeScriptBuilder extends SubprocessRunnerBase<ITypeScriptBuilderConfiguration> {
121121
private _typescriptVersion!: string;

build-tests-samples/heft-node-basic-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
"@types/heft-jest": "1.0.1",
1818
"@types/node": "12.20.24",
1919
"eslint": "~8.7.0",
20-
"typescript": "~4.7.4"
20+
"typescript": "~4.8.3"
2121
}
2222
}

build-tests-samples/heft-node-jest-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"@types/heft-jest": "1.0.1",
1717
"@types/node": "12.20.24",
1818
"eslint": "~8.7.0",
19-
"typescript": "~4.7.4"
19+
"typescript": "~4.8.3"
2020
}
2121
}

build-tests-samples/heft-serverless-stack-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"aws-cdk-lib": "2.7.0",
2727
"constructs": "~10.0.98",
2828
"eslint": "~8.7.0",
29-
"typescript": "~4.7.4"
29+
"typescript": "~4.8.3"
3030
}
3131
}

build-tests-samples/heft-storybook-react-tutorial-storykit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"react": "~16.13.1",
3333
"style-loader": "~2.0.0",
3434
"terser-webpack-plugin": "~3.0.8",
35-
"typescript": "~4.7.4",
35+
"typescript": "~4.8.3",
3636
"webpack": "~4.44.2"
3737
}
3838
}

build-tests-samples/heft-storybook-react-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"html-webpack-plugin": "~4.5.2",
3232
"source-map-loader": "~1.1.3",
3333
"style-loader": "~2.0.0",
34-
"typescript": "~4.7.4",
34+
"typescript": "~4.8.3",
3535
"webpack": "~4.44.2"
3636
}
3737
}

build-tests-samples/heft-web-rig-app-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@
2323
"@types/react-dom": "16.9.14",
2424
"@types/react": "16.14.23",
2525
"@types/webpack-env": "1.13.0",
26-
"typescript": "~4.7.4"
26+
"typescript": "~4.8.3"
2727
}
2828
}

build-tests-samples/heft-web-rig-library-tutorial/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"@types/react-dom": "16.9.14",
2626
"@types/react": "16.14.23",
2727
"@types/webpack-env": "1.13.0",
28-
"typescript": "~4.7.4"
28+
"typescript": "~4.8.3"
2929
}
3030
}

0 commit comments

Comments
 (0)