At Tonchev

- Total activity 7
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 2
-
At Tonchev commented, -
At Tonchev created a post, Webstorm resolve wrong path when using react-router-dom@next
After instlaling the next version of react-router-dom I noticed that webstorm can not resolve the link correctly. Webstorm kind a have own cache of the old version and try to resolve there the path... -
-
At Tonchev created a post, Webstorm not detecting await and response type when nested object
I tryed following case: const SomeFunction = async () => { const myObject = {}; myObject.test = { async myFunc() { return []; }, }; const myArr = await myObject.test.myFunc(); myArr...