Skip to content

Commit e10ab3e

Browse files
committed
Add support for TypeScript 5.6
Resolves #2699
1 parent 15ba2dd commit e10ab3e

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
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+
- Support TypeScript 5.6, #2699.
56
- Added `customJs` option to include a script tag in generated HTML output, #2650.
67
- Added `markdownLinkExternal` option to treat `http[s]://` links in markdown documents and comments as external to be opened in a new tab, #2679.
78
- Added `navigation.excludeReferences` option to prevent re-exports from appearing in the left hand navigation, #2685.

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"yaml": "^2.5.1"
3232
},
3333
"peerDependencies": {
34-
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x"
34+
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x"
3535
},
3636
"devDependencies": {
3737
"@types/lunr": "^2.3.7",
@@ -46,7 +46,7 @@
4646
"prettier": "3.3.3",
4747
"puppeteer": "^23.3.0",
4848
"ts-node": "^10.9.2",
49-
"typescript": "5.5.4",
49+
"typescript": "5.6.1-rc",
5050
"typescript-eslint": "^8.4.0"
5151
},
5252
"files": [

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"noUnusedLocals": true,
2121
"noUnusedParameters": true,
2222
"forceConsistentCasingInFileNames": true,
23+
"noUncheckedSideEffectImports": true,
2324
// Library
2425
"preserveConstEnums": true,
2526
"declaration": true,

0 commit comments

Comments
 (0)