Tomasz Błachut

Results 103 comments of Tomasz Błachut

@r00t3g I see, thanks for the example. It's quite advanced.

Hi. It should work in latest release. What version of plugin and IDE are you running? Also, what "SUBJ" means? Thanks

Oh ok, I've reproduced the problem. Thanks for reporting. This is a bug in parser. Happens specifically inside title and similar because according to [MDN only text is allowed inside](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title)

This is actually a regression 😔 https://youtrack.jetbrains.com/issue/WEB-41745. Related to #142

Okay that's indeed a problem. Looks like IJ built-in TS checker does not report `noImplicitAny` errors, I wasn't aware of that. Do you see any other problems besides `noImplicitAny`? There...

TS in WebStorm, PHPStorm, etc. has two layers interweaved. Built-in, and Language Service. Built-in one does not report `noImplicitAny` back to user. Frameworks are a tricky case that make similar...

Thanks for reporting! The root cause is that the plugin doesn't follow references from actually exported symbol (and export default is a separate statement that references the variable)

@dummdidumm thank you for tagging me. Generics will definitely be, as you've written, an uncanny valley and maintenance burden. Option 1 & 2 without Svelte support in editor will produce...

Generics come in handy if you want connect types of 2 or more things to each other. Fo example you may want to guarantee that some event's payload will be...