You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having the following errors when I am running typecheck script:
node_modules/react-native-draggable-grid/src/draggable-grid.tsx:100:20 - error TS6133: 'item' is declared but its value is never read.
100 items.forEach((item, index) => {
~~~~
node_modules/react-native-draggable-grid/src/draggable-grid.tsx:123:24 - error TS6133: 'nativeEvent' is declared but its value is never read.
123 function onStartDrag(nativeEvent: GestureResponderEvent, gestureState: PanResponderGestureState) {
~~~~~~~~~~~
node_modules/react-native-draggable-grid/src/draggable-grid.tsx:144:23 - error TS6133: 'nativeEvent' is declared but its value is never read.
144 function onHandMove(nativeEvent: GestureResponderEvent, gestureState: PanResponderGestureState) {
~~~~~~~~~~~
Found 3 errors.
I have a typecheck script defined as ./node_modules/.bin/tsc --noEmit. I've also tried with --skipLibCheck even if in tsconfig.js I have "skipLibCheck": true, and
"exclude": [
"node_modules",
...
]
added.
This should ignore errors from node_modules but it seems that I am still receiving the ones from this library.
Do you have some solutions for this?
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
I am having the following errors when I am running
typecheck
script:I have a
typecheck
script defined as./node_modules/.bin/tsc --noEmit
. I've also tried with--skipLibCheck
even if intsconfig.js
I have"skipLibCheck": true,
andadded.
This should ignore errors from
node_modules
but it seems that I am still receiving the ones from this library.Do you have some solutions for this?
Thanks
The text was updated successfully, but these errors were encountered: