Skip to content

Commit

Permalink
add typescript 5.4 (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcanti authored Mar 7, 2024
1 parent 5bb6d35 commit fe128b1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .changeset/light-brooms-sparkle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect/dtslint": patch
---

add typescript 5.4
10 changes: 3 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,9 @@
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"eslint.validate": [
"markdown",
"javascript",
"typescript"
],
"eslint.validate": ["markdown", "javascript", "typescript"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.quickSuggestions": {
"other": true,
Expand All @@ -42,7 +38,7 @@
"editor.tabCompletion": "off",
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "recentlyUsed",
"editor.wordBasedSuggestions": true,
"editor.wordBasedSuggestions": "matchingDocuments",
"editor.parameterHints.enabled": true,
"files.watcherExclude": {
"**/target": true
Expand Down
5 changes: 3 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ namespace TypeScriptVersion {
"5.0",
"5.1",
"5.2",
"5.3"
"5.3",
"5.4"
] as const
/** Add to this list when a version is available as typescript@next */
export const supported = [...shipped, "5.4"] as const
export const supported = [...shipped, "5.5"] as const

export const latest = supported[supported.length - 1]
}
Expand Down

0 comments on commit fe128b1

Please sign in to comment.