typescript-go icon indicating copy to clipboard operation
typescript-go copied to clipboard

Add support for resolution mode

Open EricCornelson opened this issue 11 months ago • 1 comments

EricCornelson avatar May 07 '25 20:05 EricCornelson

Looking at the error diffs that got modified but not deleted, a few big categories stand out:

  • Missing program-level diagnostics (verifyCompilerOptions not ported)
  • Module specifiers in errors mismatch in formatting, which will be fixed by #791
  • Some tests accidentally include trailing commas in package.json, which we successfully parse in Strada by using our own JSON parser and evaluator, but fail to parse in Corsa. npm itself crashes on invalid JSON in package.json files and doesn’t allow it to be pushed to the registry, so I decided to use Go’s built-in JSON parsing for better performance.

andrewbranch avatar May 22 '25 23:05 andrewbranch