Henri Beck

Results 45 comments of Henri Beck

I think flow error descriptions and reporting is quite better (especially when it comes to react props) than Typescripts. What I now dislike the most about it is how slow...

Webstorm, and for me the autocompletion, auto-import etc. is really slow, I think in a recent release they improved the language server to handle request while they are recomputing all...

The reason why I proposed this change that a lot of quite large projects are moving into this direction. And yeah, TS maybe is sometimes unsafer, but I think this...

I never said that Typescript is a different language and has not the problems of javascript, but at the same time Typescript was designed around types (which in my opinion...

What I mean by "designed around types" is that flow tries to add types on top of javascript, and Typescript is a superset of javascript which compiles down to js.

_From @kof on February 26, 2018 17:21_ I haven't tried yet, feel free to post your findings or work on a PR. This doesn't have high priority for me right...

_From @a-ignatov-parc on February 26, 2018 17:47_ Strange, because it should work 🤔 The problem is that you can't send styles before react's stream is completely drained (sent to the...

_From @kof on February 26, 2018 17:49_ I think styles need to be sent before the html they style in order to avoid a FOUC

_From @a-ignatov-parc on February 26, 2018 17:49_ There is the same problem with any lib that should send its side-effects at the beginning of the page and which result depends...

_From @a-ignatov-parc on February 26, 2018 17:50_ > I think styles need to be sent before the html they style in order to avoid a FOUC that is true