Skip to content

scip-typescript v0.3.8

Compare
Choose a tag to compare
@olafurpg olafurpg released this 20 Apr 13:31
· 78 commits to main since this release

Improved "Find references" for properties of object literals

Previously, "find references" did not show meaningful results for the property hello in the object literal below

interface Messages {
  hello: string
}
function frenchMessages(): Messages {
  return { hello: "Bonjour" }
}

This releases fixes this issue specifically for return statements inside functions. Note that this issue can manifest in many other ways that we are planning to fix in future releases. Please report issues if you observe cases where "go to definition" or "find references" doesn't match what you see in VS Code or WebStorm.

What's Changed

  • chore(deps): update dependency prettier to v2.8.7 by @renovate in #241
  • chore(deps): update typescript-eslint monorepo to ^5.57.0 by @renovate in #242
  • chore(deps): update typescript-eslint monorepo to ^5.57.1 by @renovate in #246
  • Infer symbol relationship for object literals property in return statement by @olafurpg in #248

Full Changelog: v0.3.7...v0.3.8