Skip to content

Commit eab5dd4

Browse files
committed
Add support for TypeScript 4.6
Closes #1877
1 parent fe6758c commit eab5dd4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### Features
44

5+
- Add support for TypeScript 4.6, #1877.
56
- Support copying `@param` comments for nested members that target union and intersection types, #1876.
67

78
## v0.22.12 (2022-02-20)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"shiki": "^0.10.1"
2929
},
3030
"peerDependencies": {
31-
"typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x"
31+
"typescript": "4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x"
3232
},
3333
"devDependencies": {
3434
"@types/glob": "^7.2.0",

src/lib/application.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export class Application extends ChildableComponent<
206206
)
207207
) {
208208
this.logger.warn(
209-
`You are running with an unsupported TypeScript version! TypeDoc supports ${supportedVersionMajorMinor.join(
209+
`You are running with an unsupported TypeScript version! This may work, or it might break. TypeDoc supports ${supportedVersionMajorMinor.join(
210210
", "
211211
)}`
212212
);

0 commit comments

Comments
 (0)