Dmitry Olyenyov

Results 11 comments of Dmitry Olyenyov
trafficstars

https://github.com/MartinJohns/vscode-inline-types/ Here is an extension that shows inferred types in code lens. But if I understand they just parse ts files by themselves.

I've faced the similar issue, but can't reproduce it on clean create-react-app project. Here the code ```javascript type Getter = (state: ServerDetailsState) => Result; const localState = (f: Getter) =>...

@mgarnick2000 This is not exactly about blacklisting.. The idea is to be able to reset whole store to initial value on user logout without having `case USER_LOGGED_OUT: return initialState` in...

This won't work because of arrays. I think we should revert types to `any`

Can you give some advice on what is in `b.nodes`, so I could try to find out why it is undefined? I've tried to add console.log's and there's some gigantic...

For now, I'm just patching the code in-place in postinstall :) I just was under impression that `equals` should be associative and if the left side can have `.nodes ===...

Could you just add that condition? It's pretty obvious that you are comparing two objects of the same shape and for some reason you are testing `a.nodes !== undefined`, but...

I can't reproduce it using cssnano, but it fails in current next.js. Minimal code is something like ``` .z { color: red; @media (max-width: 500px); } ``` this body-less media...

Yes, I agree, but it shouldn't cause plugin to crash with `Cannot read property 'length' of undefined`. And docs says that `nodes` can be undefined... Worst thing is this seems...