@volar/typescript 2.4.25 → 2.4.26

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/node/utils.js CHANGED
@@ -36,8 +36,8 @@ function fixupImpliedNodeFormatForFile(ts, pluginExtensions, sourceFile, package
36
36
  return;
37
37
  }
38
38
  const asTs = sourceFile.fileName + '.ts';
39
- // Use getImpliedNodeFormatForFileWroker instead of getImpliedNodeFormatForFile for runTsc() compatibility
40
- const impliedNodeFormat = ts.getImpliedNodeFormatForFileWroker?.(asTs, packageJsonInfoCache, host, options)?.impliedNodeFormat;
39
+ // Use getImpliedNodeFormatForFileWorker instead of getImpliedNodeFormatForFile for runTsc() compatibility
40
+ const impliedNodeFormat = ts.getImpliedNodeFormatForFileWorker?.(asTs, packageJsonInfoCache, host, options)?.impliedNodeFormat;
41
41
  if (impliedNodeFormat === undefined) {
42
42
  return;
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volar/typescript",
3
- "version": "2.4.25",
3
+ "version": "2.4.26",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "**/*.js",
@@ -12,13 +12,13 @@
12
12
  "directory": "packages/typescript"
13
13
  },
14
14
  "dependencies": {
15
- "@volar/language-core": "2.4.25",
15
+ "@volar/language-core": "2.4.26",
16
16
  "path-browserify": "^1.0.1",
17
17
  "vscode-uri": "^3.0.8"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/path-browserify": "latest",
21
- "@volar/language-service": "2.4.25"
21
+ "@volar/language-service": "2.4.26"
22
22
  },
23
- "gitHead": "cff5cbf8cfe438e27b2ccbc15248937308ff21a7"
23
+ "gitHead": "4a9d25d797d08d9c149bebf0f52ac5e172f4757d"
24
24
  }