Kevin Ramharak
Kevin Ramharak
I have done some prototyping at [`ts-transform-runtime-check`](https://github.com/kevinramharak/ts-transform-runtime-check) where I explored a similar idea but with the typescript compiler API. I'm wondering what the goal of this package would be. I...
Hm, I don't know about the scope issues. I would suggest sticking to the javascript scope rules. That would probably be more intutive. You can always declare global types with...
I looked into it a bit more, the cache does help a lot: ``` [3:41:59 PM] Diagnostics took 1254ms [3:42:06 PM] Diagnostics took 736ms [3:42:13 PM] Diagnostics took 315ms [3:42:20...
@yoavbls I think it needs to be changed to be smarter about cache hits and misses. Although we could also just increase the cache size and see if people with...
Issue is the private property prefix character `#`, I submitted a PR #106
@MichaelDimmitt I think you are looking for the [`noErrorTruncation`](https://www.typescriptlang.org/tsconfig/#noErrorTruncation) option in the `tsconfig.json`. The truncated error message is because that's what the typescript compiler generates as a diagnostic.
@MichaelDimmitt Apologies, i did not see your PS. I tried to reproduce it and ran into the truncation problem and assumed that was the case here. This would indeed be...
I have a 99% working implementation with the markdown code block syntax highlighting still missing:  Which opens the rendered markdown in a new tab:  But I'm struggling with...
@yoavbls I did look into the [Webview API](https://code.visualstudio.com/api/extension-guides/webview) but since it recommends first looking into the native API's I decided to try that first. My MVP branch is located here:...
> Looking good So the only thing left for a working side panel is to render the types with syntax highlighting in the markdown panel? @yoavbls A working side panel...