Erin Dachtler
Erin Dachtler
I don't think it's something that I can do without making **drastic** changes to the API, so it really comes down to whether you like backwards compatibility. Some users might...
I should've been more clear with the `buffer = encode(schema, obj)` thing. I meant `schema` to be the compiled form (`Type`) but I see how that was misleading. I promise...
Looking through the code for writing an object into a buffer I can't actually find the part where enum translation is done. I ran some sample code through a debugger...
Ah okay. So those enum lookup tables in the generated code are purely for the benefit of the programmer and not used by some other existing code. That makes more...
Right now this is a blocking issue for me. I'm wondering if there's any way we can build a version of the file that only contains the types we require...
For me at least, the TS language server still won't return results to intellisense. It just keeps saying `Property '@type' does not exist on type 'Thing'`
Looks like this might've been fixed for us in typescript 3.9.0-beta
I was wrong. 3.9 definitely improved the performance, and it gets a lot farther before failing, but the language server still crashes
I've been able to mitigate this problem by passing `PARCEL_WORKERS=1` to it. It seems like the memory usage has something to do with how many worker threads it's trying to...
I've run into this problem as well, but it was with only one torrent left open for more than 15 minutes or so. I found a [question](https://stackoverflow.com/questions/49532939/how-to-clear-rtcpeerconnection-webrtc) that might be...