Ron Spickenagel

Results 128 comments of Ron Spickenagel

@cspotcode Yeah, that's why I thought 'extensions' made more sense. Especially if we allow for additional patching and combining LS plugins with transformers into one package. > Can typescript transformers...

@cspotcode If `noEmit` is set, I believe transformers don't get run, so that's a good point. In that case, tsp would not allow modification. That's another reason I'd like to...

Working on this in `ts-patch` now - https://github.com/nonara/ts-patch/issues/35

I looked into this a bit. I'm not sure I see how this wouldn't work. But, if it isn't working, I believe I found the solution. For `createIncrementalProgram`, look at...

> The ask here is for `TypeNameIdentifierType` to accept `int8`. An 8byte integer is compatible with JS `Number` type. This is not asking for [BigInt in JS](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) support. Correct. I...

Thanks for the report. ESModule support is definitely important. I'm not sure if I'm missing something, but I'm not sure how you could implement this into CJS code without dramatic...

We're essentially doing the same thing as `ttypescript`, with the main differences being that we add a few more features and ours is done once, where tts does it each...

Great point. Thanks for raising this. The main option with node would be to use file locking, but it turns out this is a little tricky in terms of multi-OS...

Hello. Thanks for the request. I have two points I'd make on that. First, the library was built to have an incredibly light footprint, which it does. While it may...

That's a good point. I believe a good strategy would be to replace what we can with local logic and we could use Webpack to bundle the rest for release....