-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App fails Typecheck when rn-range-slider installed #141
Comments
…ostly ignoring things
There is no mystery here. The typings are wrong within this library, that's it. If I get the time I'll submit a pull request to fix this, I like having 0 type errors / warnings in my projects. |
Is there al fix already for this? 👀 EDIT: const RangeSlider = require('rn-range-slider').default; |
Resolve githuboftigran#141 by cleaning up various typecheck issues, mostly ignoring…
Is there already any fix? |
I'm using rn-range-slider 2.2.2 with react-native 0.68.3
Here's my tsconfig.json file:
Typecheck fails as follows. My attempts to ask Typecheck to ignore this library have yet to be successful.
NOTE: Adding
"skipLibCheck": true,
has nothing to do with this. Contrary to numerous sources, this is for ignoring*.d.ts
files and you will see my errors are from.tsx
files.NOTE ALSO: adding
exclude: [ "node_modules" ]
also has no effect. Under normal circumstances, and contrary to numerous sources, this is an unnecessary redundancy.Posted to StackOverflow: https://stackoverflow.com/questions/75026405/app-fails-typescript-typecheck-when-rn-range-slider-installed
The text was updated successfully, but these errors were encountered: