0xorial
0xorial
@RicoSuter > How to detect successful vs exception responses? like this: Backend: ```C# public class CreatedUser { public string Id {get;set;} } public class CreateUserError {public string Message {get;set;} }...
My take on the workaround ```TS export async function wrapApiException( cb: () => Promise, statuses: { [statusCode: number]: (result: string, response: any) => void } ): Promise { try {...
Just as a small user feedback - I was recently trying to add checks to my angular project and approach from ts-auto-guard was A LOT easier to integrate (I am...
Could you please explain what is the reason to use substitution matrix instead of just storing the final substituted letter in the read feature? That would have taken the same...
https://github.com/0xorial/mocha-clinic-test
As I see, before the config was loaded [here](https://github.com/Realytics/fork-ts-checker-webpack-plugin/blob/master/src/IncrementalChecker.ts#L65). With 'useTypescriptIncrementalApi' it is loaded inside typescript code, through [this function](https://github.com/Realytics/fork-ts-checker-webpack-plugin/blob/master/src/CompilerHost.ts#L58). I would compare if there is a difference between how...
@jantimon not right away, but I will have a look...
One idea that I have following. In non-incremental version chokidar is used to watch files inside the worker process. In incremental version we use TypeScripts' own implementation. Perhaps there is...
Is wasm-bindgen intended to be used independently from wasm-pack/WasmPackPlugin ? wasm-pack has some annoying limitations so I am about to resort to use wasm-bindgen directly, but the examples in the...