Michael Aird

Results 29 comments of Michael Aird

@nikhilk how "safe" is it to move back and forth between 0.74 and 0.8? I want to try it out and give feedback but i don't have a secondary environment...

This might be helpful. Here's my function for parsing that style of date: ``` public static Date ParseJsonDate(string input) { if (String.IsNullOrEmpty(input)) { return null; } Number milliseconds = Number.Parse(input.ReplaceRegex(new...

@ivogabe I can't figure out why these tests are failing. Can you have a look?

I took a first crack at emitting .buildinfo files (https://github.com/ivogabe/gulp-typescript/pull/618) . This might be enough?

If the .buildinfo file is created by tsc ( because the composite option or incremental option is true) the buildinfo file will be available on result.buildInfo. It’s possible we might...

It's entirely possible that my changes targeting 3.4/3.5 are entirely useless with 3.6 and the correct approach is to tie into the the new apis to support incremental builds (https://github.com/microsoft/TypeScript/issues/31849)...

@ivogabe Thank you! Please let me know if i can help.

Is there any way I could help out with this?

Would you consider splitting this into 2 features? one to handle createIncrementalProgram + emitting .tsbuildinfo and a second one to improve watch mode?

I spent a while poking at implementing this and going in circles. Here are some issues/thoughts: - GenericNameSyntax inherits from SimpleNameSyntax so it should be straightforward to differentiate between them...