Skip to content

Commit 650b1ed

Browse files
committed
feat(deps): upgrade to typescript v6
1 parent 75b30aa commit 650b1ed

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
"typedoc-plugin-merge-modules": "^7.0.0",
139139
"typedoc-plugin-missing-exports": "^4.1.3",
140140
"typedoc-plugin-umami-analytics": "^1.0.1",
141-
"typescript": "^5.9.3",
141+
"typescript": "^6.0.3",
142142
"typescript-eslint": "^8.58.2"
143143
},
144144
"files": [

src/components/FontAwesomeIcon.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,9 @@ export const FontAwesomeIcon = React.forwardRef<
120120
// @ts-expect-error since `key` can be any of the keys in FontAwesomeIconProps,
121121
// TypeScript widens the type of the `obj[key]` lookups to a union of all possible values,
122122
// which will not correctly overlap each other.
123-
// TODO: remove eslint-disable when react hooks rules are fixed properly to stop false flags on refs
124-
// eslint-disable-next-line react-hooks/refs
125123
extraProps[key] = allProps[key]
126124
}
127125

128-
// TODO: remove eslint-disable when react hooks rules are fixed properly to stop false flags on refs
129-
// eslint-disable-next-line react-hooks/refs
130126
return makeReactConverter(abstract[0], extraProps)
131127
})
132128

0 commit comments

Comments
 (0)