File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
### Features
4
4
5
+ - Add support for TypeScript 4.6, #1877 .
5
6
- Support copying ` @param ` comments for nested members that target union and intersection types, #1876 .
6
7
7
8
## v0.22.12 (2022-02-20)
Original file line number Diff line number Diff line change 28
28
"shiki" : " ^0.10.1"
29
29
},
30
30
"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 "
32
32
},
33
33
"devDependencies" : {
34
34
"@types/glob" : " ^7.2.0" ,
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ export class Application extends ChildableComponent<
206
206
)
207
207
) {
208
208
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 (
210
210
", "
211
211
) } `
212
212
) ;
You can’t perform that action at this time.
0 commit comments