Scott Jungwirth

Results 11 comments of Scott Jungwirth

> ```json > { > "lint-staged": { > "**/*.{ts,tsx}": [ > "tsc-files --noEmit src/defines.d.ts src/path/to/other.d.ts" > ] > } > } > ``` this seems like the best solution to...

> I'd like to know what people following this issue think. @gustavopch I'd suggest a warning which offers a recommended solution for projects which define "includes" in tsconfig. As we...

+1, I am also wondering if I have multiple async cleanup handlers that need to call uninstall, will they both run? Or do I need to warp the uninstall calls...

I'm having the issue described in https://stackoverflow.com/questions/73362632/react-native-typescript-number-0-read-as-nan where `0` is showing as `NaN` for variable inspection when debugging. This only started recently when updating from RN 68.x to 71.x ![image](https://user-images.githubusercontent.com/314856/233798298-5655f1c0-ed0d-42fe-8eee-0b3dcca824fe.png)

I was hoping to use this with Zombie headless browser but that doesn't support synchronous XMLHttpRequests: https://github.com/assaf/zombie/issues/417

+1 I would also like to do on demand validation, before making the create request, which currently seems impossible due to table/schema being private.

@AaronHarris this is really helpful, thank you. While looking into what you said it looks like there is a reference to `table` on model instances as well. So it looks...

Just ran into this today when trying to install this module inside a Docker container that had an old version of pip. The fix was just to update pip inside...

Hi, what I have done is pass the access_token to the back end over https. From the backend you need to fetch the user's profile information again directly from the...