Jonathan Tuzman

Results 10 comments of Jonathan Tuzman

Hm, I'm not sure why there's a failure on my last run. I just ran the `ci` script locally and it passed..

A *slightly* better way to suppress the error is: ``` import { Server } from 'pretender'; const requests = (server.pretender as Server & { handledRequests: any[] }).handledRequests; ``` Though I'd...

> Pretender creates the `handledRequests` array as part of the constructor. So if should always be there. If track requests is true it is one thing, if it is false...

Interesting. If you navigate in your IDE, `PretenderServer` takes you not to `pretender.ts` (or its `js` equivalent) but to Pretender's `index.d.ts`, and its default export is indeed missing the declaration...

Given that there's no other info for a SyncUser, what is the function of the Metadata fields in Realm Studio?

The test does pass in the browser. I'll write to support. Thanks.

> Thank you for filing a request. > > CRA2 uses Babel to transpile code and does not use any webpack typescript loaders. First of all, there's another solution for...

@atatakobry @phmatray I've just succeeded in getting the "original" babel plugin to work in my CRA typescript app by following the instructions [here](https://dev.to/ansonh/simplest-way-to-install-babel-plugins-in-create-react-app-7i5).

I'm having a similar "already listening" problem, and I tried ``` new Server('socketioserverurl', { forceNew: true, reconnection: false }) ``` and first typescript said those weren't valid keys, and when...

> For anyone struggling `yarn 3` on a private package > > on your package > > ```shell > yarn link > ``` > > Then on the repo you...