@typescript-deploys/pr-build 5.5.0-pr-57749-2 → 5.5.0-pr-57749-11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/tsserver.js CHANGED
@@ -165628,7 +165628,7 @@ function provideInlayHints(context) {
165628
165628
  return type.symbol && type.symbol.flags & 1536 /* Module */;
165629
165629
  }
165630
165630
  function visitVariableLikeDeclaration(decl) {
165631
- if (!decl.initializer || isBindingPattern(decl.name) || isVariableDeclaration(decl) && !isHintableDeclaration(decl)) {
165631
+ if (decl.initializer === void 0 && !(isPropertyDeclaration(decl) && !(checker.getTypeAtLocation(decl).flags & 1 /* Any */)) || isBindingPattern(decl.name) || isVariableDeclaration(decl) && !isHintableDeclaration(decl)) {
165632
165632
  return;
165633
165633
  }
165634
165634
  const effectiveTypeAnnotation = getEffectiveTypeAnnotationNode(decl);
package/lib/typescript.js CHANGED
@@ -165628,7 +165628,7 @@ function provideInlayHints(context) {
165628
165628
  return type.symbol && type.symbol.flags & 1536 /* Module */;
165629
165629
  }
165630
165630
  function visitVariableLikeDeclaration(decl) {
165631
- if (!decl.initializer || isBindingPattern(decl.name) || isVariableDeclaration(decl) && !isHintableDeclaration(decl)) {
165631
+ if (decl.initializer === void 0 && !(isPropertyDeclaration(decl) && !(checker.getTypeAtLocation(decl).flags & 1 /* Any */)) || isBindingPattern(decl.name) || isVariableDeclaration(decl) && !isHintableDeclaration(decl)) {
165632
165632
  return;
165633
165633
  }
165634
165634
  const effectiveTypeAnnotation = getEffectiveTypeAnnotationNode(decl);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@typescript-deploys/pr-build",
3
3
  "author": "Microsoft Corp.",
4
4
  "homepage": "https://www.typescriptlang.org/",
5
- "version": "5.5.0-pr-57749-2",
5
+ "version": "5.5.0-pr-57749-11",
6
6
  "license": "Apache-2.0",
7
7
  "description": "TypeScript is a language for application scale JavaScript development",
8
8
  "keywords": [
@@ -113,5 +113,5 @@
113
113
  "node": "20.1.0",
114
114
  "npm": "8.19.4"
115
115
  },
116
- "gitHead": "ea3bbc27d9f03aad63a25335fe169598fea13147"
116
+ "gitHead": "965ee32ce9a02965a4ab1a33e2757175e67d911c"
117
117
  }