typescript-go
typescript-go copied to clipboard
Add support for resolution mode
Looking at the error diffs that got modified but not deleted, a few big categories stand out:
- Missing program-level diagnostics (
verifyCompilerOptionsnot 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.