Skip to content

Commit

Permalink
Add support for TypeScript 5.6
Browse files Browse the repository at this point in the history
Resolves #2699
  • Loading branch information
Gerrit0 committed Sep 6, 2024
1 parent 15ba2dd commit e10ab3e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

### Features

- Support TypeScript 5.6, #2699.
- Added `customJs` option to include a script tag in generated HTML output, #2650.
- Added `markdownLinkExternal` option to treat `http[s]://` links in markdown documents and comments as external to be opened in a new tab, #2679.
- Added `navigation.excludeReferences` option to prevent re-exports from appearing in the left hand navigation, #2685.
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"yaml": "^2.5.1"
},
"peerDependencies": {
"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"
"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"
},
"devDependencies": {
"@types/lunr": "^2.3.7",
Expand All @@ -46,7 +46,7 @@
"prettier": "3.3.3",
"puppeteer": "^23.3.0",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript": "5.6.1-rc",
"typescript-eslint": "^8.4.0"
},
"files": [
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedSideEffectImports": true,
// Library
"preserveConstEnums": true,
"declaration": true,
Expand Down

0 comments on commit e10ab3e

Please sign in to comment.