@volar/typescript 2.3.0-alpha.9 → 2.3.1
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/common.js +1 -2
- package/lib/node/decorateLanguageService.js +141 -146
- package/lib/node/decorateLanguageServiceHost.js +2 -3
- package/lib/node/decorateProgram.js +38 -24
- package/lib/node/dedupe.js +1 -2
- package/lib/node/proxyCreateProgram.js +1 -2
- package/lib/node/transform.d.ts +11 -9
- package/lib/node/transform.js +79 -61
- package/lib/node/utils.d.ts +1 -2
- package/lib/node/utils.js +5 -10
- package/lib/protocol/createProject.js +1 -2
- package/lib/protocol/createSys.js +1 -2
- package/lib/quickstart/createAsyncLanguageServicePlugin.d.ts +5 -2
- package/lib/quickstart/createAsyncLanguageServicePlugin.js +16 -17
- package/lib/quickstart/createLanguageServicePlugin.d.ts +9 -2
- package/lib/quickstart/createLanguageServicePlugin.js +21 -20
- package/lib/quickstart/runTsc.js +2 -2
- package/lib/resolveModuleName.js +1 -2
- package/lib/typescript/core.js +18 -20
- package/lib/typescript/path.js +10 -11
- package/lib/typescript/utilities.js +1 -3
- package/package.json +4 -4
|
@@ -1,28 +1,30 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.decoratedLanguageServiceHosts = exports.decoratedLanguageServices = exports.projectExternalFileExtensions = exports.externalFiles = void 0;
|
|
4
|
+
exports.createLanguageServicePlugin = createLanguageServicePlugin;
|
|
5
|
+
exports.arrayItemsEqual = arrayItemsEqual;
|
|
4
6
|
const language_core_1 = require("@volar/language-core");
|
|
5
7
|
const common_1 = require("../common");
|
|
6
8
|
const decorateLanguageService_1 = require("../node/decorateLanguageService");
|
|
7
9
|
const decorateLanguageServiceHost_1 = require("../node/decorateLanguageServiceHost");
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
function createLanguageServicePlugin(
|
|
10
|
+
exports.externalFiles = new WeakMap();
|
|
11
|
+
exports.projectExternalFileExtensions = new WeakMap();
|
|
12
|
+
exports.decoratedLanguageServices = new WeakSet();
|
|
13
|
+
exports.decoratedLanguageServiceHosts = new WeakSet();
|
|
14
|
+
function createLanguageServicePlugin(create) {
|
|
13
15
|
return modules => {
|
|
14
16
|
const { typescript: ts } = modules;
|
|
15
17
|
const pluginModule = {
|
|
16
18
|
create(info) {
|
|
17
|
-
if (!decoratedLanguageServices.has(info.languageService)
|
|
18
|
-
&& !decoratedLanguageServiceHosts.has(info.languageServiceHost)) {
|
|
19
|
-
decoratedLanguageServices.add(info.languageService);
|
|
20
|
-
decoratedLanguageServiceHosts.add(info.languageServiceHost);
|
|
21
|
-
const languagePlugins =
|
|
19
|
+
if (!exports.decoratedLanguageServices.has(info.languageService)
|
|
20
|
+
&& !exports.decoratedLanguageServiceHosts.has(info.languageServiceHost)) {
|
|
21
|
+
exports.decoratedLanguageServices.add(info.languageService);
|
|
22
|
+
exports.decoratedLanguageServiceHosts.add(info.languageServiceHost);
|
|
23
|
+
const { languagePlugins, setup } = create(ts, info);
|
|
22
24
|
const extensions = languagePlugins
|
|
23
25
|
.map(plugin => plugin.typescript?.extraFileExtensions.map(ext => '.' + ext.extension) ?? [])
|
|
24
26
|
.flat();
|
|
25
|
-
projectExternalFileExtensions.set(info.project, extensions);
|
|
27
|
+
exports.projectExternalFileExtensions.set(info.project, extensions);
|
|
26
28
|
const getScriptSnapshot = info.languageServiceHost.getScriptSnapshot.bind(info.languageServiceHost);
|
|
27
29
|
const getScriptVersion = info.languageServiceHost.getScriptVersion.bind(info.languageServiceHost);
|
|
28
30
|
const syncedScriptVersions = new language_core_1.FileMap(ts.sys.useCaseSensitiveFileNames);
|
|
@@ -45,27 +47,27 @@ function createLanguageServicePlugin(loadLanguagePlugins) {
|
|
|
45
47
|
});
|
|
46
48
|
(0, decorateLanguageService_1.decorateLanguageService)(language, info.languageService);
|
|
47
49
|
(0, decorateLanguageServiceHost_1.decorateLanguageServiceHost)(ts, language, info.languageServiceHost);
|
|
50
|
+
setup?.(language);
|
|
48
51
|
}
|
|
49
52
|
return info.languageService;
|
|
50
53
|
},
|
|
51
54
|
getExternalFiles(project, updateLevel = 0) {
|
|
52
|
-
if (updateLevel >=
|
|
53
|
-
|| !externalFiles.has(project)) {
|
|
54
|
-
const oldFiles = externalFiles.get(project);
|
|
55
|
-
const extensions = projectExternalFileExtensions.get(project);
|
|
55
|
+
if (updateLevel >= 1
|
|
56
|
+
|| !exports.externalFiles.has(project)) {
|
|
57
|
+
const oldFiles = exports.externalFiles.get(project);
|
|
58
|
+
const extensions = exports.projectExternalFileExtensions.get(project);
|
|
56
59
|
const newFiles = extensions?.length ? (0, decorateLanguageServiceHost_1.searchExternalFiles)(ts, project, extensions) : [];
|
|
57
|
-
externalFiles.set(project, newFiles);
|
|
60
|
+
exports.externalFiles.set(project, newFiles);
|
|
58
61
|
if (oldFiles && !arrayItemsEqual(oldFiles, newFiles)) {
|
|
59
62
|
project.refreshDiagnostics();
|
|
60
63
|
}
|
|
61
64
|
}
|
|
62
|
-
return externalFiles.get(project);
|
|
65
|
+
return exports.externalFiles.get(project);
|
|
63
66
|
},
|
|
64
67
|
};
|
|
65
68
|
return pluginModule;
|
|
66
69
|
};
|
|
67
70
|
}
|
|
68
|
-
exports.createLanguageServicePlugin = createLanguageServicePlugin;
|
|
69
71
|
function arrayItemsEqual(a, b) {
|
|
70
72
|
if (a.length !== b.length) {
|
|
71
73
|
return false;
|
|
@@ -78,5 +80,4 @@ function arrayItemsEqual(a, b) {
|
|
|
78
80
|
}
|
|
79
81
|
return true;
|
|
80
82
|
}
|
|
81
|
-
exports.arrayItemsEqual = arrayItemsEqual;
|
|
82
83
|
//# sourceMappingURL=createLanguageServicePlugin.js.map
|
package/lib/quickstart/runTsc.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.getLanguagePlugins = void 0;
|
|
4
|
+
exports.runTsc = runTsc;
|
|
4
5
|
const fs = require("fs");
|
|
5
6
|
let getLanguagePlugins = () => [];
|
|
6
7
|
exports.getLanguagePlugins = getLanguagePlugins;
|
|
@@ -37,7 +38,6 @@ function runTsc(tscPath, extensions, _getLanguagePlugins) {
|
|
|
37
38
|
delete require.cache[tscPath];
|
|
38
39
|
}
|
|
39
40
|
}
|
|
40
|
-
exports.runTsc = runTsc;
|
|
41
41
|
function replace(text, ...[search, replace]) {
|
|
42
42
|
const before = text;
|
|
43
43
|
text = text.replace(search, replace);
|
package/lib/resolveModuleName.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.createResolveModuleName =
|
|
3
|
+
exports.createResolveModuleName = createResolveModuleName;
|
|
4
4
|
function createResolveModuleName(ts, host, languagePlugins, getSourceScript) {
|
|
5
5
|
const toSourceFileInfo = new Map();
|
|
6
6
|
const moduleResolutionHost = {
|
|
@@ -87,5 +87,4 @@ function createResolveModuleName(ts, host, languagePlugins, getSourceScript) {
|
|
|
87
87
|
return false;
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
|
-
exports.createResolveModuleName = createResolveModuleName;
|
|
91
90
|
//# sourceMappingURL=resolveModuleName.js.map
|
package/lib/typescript/core.js
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
3
|
+
exports.every = every;
|
|
4
|
+
exports.findIndex = findIndex;
|
|
5
|
+
exports.indexOfAnyCharCode = indexOfAnyCharCode;
|
|
6
|
+
exports.map = map;
|
|
7
|
+
exports.flatten = flatten;
|
|
8
|
+
exports.flatMap = flatMap;
|
|
9
|
+
exports.some = some;
|
|
10
|
+
exports.sort = sort;
|
|
11
|
+
exports.lastOrUndefined = lastOrUndefined;
|
|
12
|
+
exports.last = last;
|
|
13
|
+
exports.equateStringsCaseInsensitive = equateStringsCaseInsensitive;
|
|
14
|
+
exports.equateStringsCaseSensitive = equateStringsCaseSensitive;
|
|
15
|
+
exports.compareStringsCaseSensitive = compareStringsCaseSensitive;
|
|
16
|
+
exports.getStringComparer = getStringComparer;
|
|
17
|
+
exports.endsWith = endsWith;
|
|
18
|
+
exports.stringContains = stringContains;
|
|
19
|
+
exports.createGetCanonicalFileName = createGetCanonicalFileName;
|
|
20
|
+
exports.startsWith = startsWith;
|
|
5
21
|
const emptyArray = [];
|
|
6
22
|
/**
|
|
7
23
|
* Iterates through `array` by index and performs the callback on each element of array until the callback
|
|
@@ -18,7 +34,6 @@ function every(array, callback) {
|
|
|
18
34
|
}
|
|
19
35
|
return true;
|
|
20
36
|
}
|
|
21
|
-
exports.every = every;
|
|
22
37
|
/** Works like Array.prototype.findIndex, returning `-1` if no element satisfying the predicate is found. */
|
|
23
38
|
function findIndex(array, predicate, startIndex) {
|
|
24
39
|
if (array === undefined) {
|
|
@@ -31,7 +46,6 @@ function findIndex(array, predicate, startIndex) {
|
|
|
31
46
|
}
|
|
32
47
|
return -1;
|
|
33
48
|
}
|
|
34
|
-
exports.findIndex = findIndex;
|
|
35
49
|
function contains(array, value, equalityComparer = equateValues) {
|
|
36
50
|
if (array) {
|
|
37
51
|
for (const v of array) {
|
|
@@ -50,7 +64,6 @@ function indexOfAnyCharCode(text, charCodes, start) {
|
|
|
50
64
|
}
|
|
51
65
|
return -1;
|
|
52
66
|
}
|
|
53
|
-
exports.indexOfAnyCharCode = indexOfAnyCharCode;
|
|
54
67
|
function map(array, f) {
|
|
55
68
|
let result;
|
|
56
69
|
if (array) {
|
|
@@ -61,7 +74,6 @@ function map(array, f) {
|
|
|
61
74
|
}
|
|
62
75
|
return result;
|
|
63
76
|
}
|
|
64
|
-
exports.map = map;
|
|
65
77
|
/**
|
|
66
78
|
* Flattens an array containing a mix of array or non-array elements.
|
|
67
79
|
*
|
|
@@ -81,7 +93,6 @@ function flatten(array) {
|
|
|
81
93
|
}
|
|
82
94
|
return result;
|
|
83
95
|
}
|
|
84
|
-
exports.flatten = flatten;
|
|
85
96
|
/**
|
|
86
97
|
* Maps an array. If the mapped value is an array, it is spread into the result.
|
|
87
98
|
*
|
|
@@ -105,7 +116,6 @@ function flatMap(array, mapfn) {
|
|
|
105
116
|
}
|
|
106
117
|
return result || emptyArray;
|
|
107
118
|
}
|
|
108
|
-
exports.flatMap = flatMap;
|
|
109
119
|
function some(array, predicate) {
|
|
110
120
|
if (array) {
|
|
111
121
|
if (predicate) {
|
|
@@ -121,7 +131,6 @@ function some(array, predicate) {
|
|
|
121
131
|
}
|
|
122
132
|
return false;
|
|
123
133
|
}
|
|
124
|
-
exports.some = some;
|
|
125
134
|
// function append<T>(to: T[] | undefined, value: T): T[];
|
|
126
135
|
// function append<T>(to: T[] | undefined, value: T | undefined): T[] | undefined;
|
|
127
136
|
// function append<T>(to: Push<T>, value: T | undefined): void;
|
|
@@ -164,19 +173,16 @@ function addRange(to, from, start, end) {
|
|
|
164
173
|
function sort(array, comparer) {
|
|
165
174
|
return (array.length === 0 ? array : array.slice().sort(comparer));
|
|
166
175
|
}
|
|
167
|
-
exports.sort = sort;
|
|
168
176
|
/**
|
|
169
177
|
* Returns the last element of an array if non-empty, `undefined` otherwise.
|
|
170
178
|
*/
|
|
171
179
|
function lastOrUndefined(array) {
|
|
172
180
|
return array === undefined || array.length === 0 ? undefined : array[array.length - 1];
|
|
173
181
|
}
|
|
174
|
-
exports.lastOrUndefined = lastOrUndefined;
|
|
175
182
|
function last(array) {
|
|
176
183
|
// Debug.assert(array.length !== 0);
|
|
177
184
|
return array[array.length - 1];
|
|
178
185
|
}
|
|
179
|
-
exports.last = last;
|
|
180
186
|
/**
|
|
181
187
|
* Tests whether a value is an array.
|
|
182
188
|
*/
|
|
@@ -247,7 +253,6 @@ function equateStringsCaseInsensitive(a, b) {
|
|
|
247
253
|
&& b !== undefined
|
|
248
254
|
&& a.toUpperCase() === b.toUpperCase();
|
|
249
255
|
}
|
|
250
|
-
exports.equateStringsCaseInsensitive = equateStringsCaseInsensitive;
|
|
251
256
|
/**
|
|
252
257
|
* Compare the equality of two strings using a case-sensitive ordinal comparison.
|
|
253
258
|
*
|
|
@@ -257,7 +262,6 @@ exports.equateStringsCaseInsensitive = equateStringsCaseInsensitive;
|
|
|
257
262
|
function equateStringsCaseSensitive(a, b) {
|
|
258
263
|
return equateValues(a, b);
|
|
259
264
|
}
|
|
260
|
-
exports.equateStringsCaseSensitive = equateStringsCaseSensitive;
|
|
261
265
|
function compareComparableValues(a, b) {
|
|
262
266
|
return a === b ? 0 /* Comparison.EqualTo */ :
|
|
263
267
|
a === undefined ? -1 /* Comparison.LessThan */ :
|
|
@@ -304,26 +308,20 @@ function compareStringsCaseInsensitive(a, b) {
|
|
|
304
308
|
function compareStringsCaseSensitive(a, b) {
|
|
305
309
|
return compareComparableValues(a, b);
|
|
306
310
|
}
|
|
307
|
-
exports.compareStringsCaseSensitive = compareStringsCaseSensitive;
|
|
308
311
|
function getStringComparer(ignoreCase) {
|
|
309
312
|
return ignoreCase ? compareStringsCaseInsensitive : compareStringsCaseSensitive;
|
|
310
313
|
}
|
|
311
|
-
exports.getStringComparer = getStringComparer;
|
|
312
314
|
function endsWith(str, suffix) {
|
|
313
315
|
const expectedPos = str.length - suffix.length;
|
|
314
316
|
return expectedPos >= 0 && str.indexOf(suffix, expectedPos) === expectedPos;
|
|
315
317
|
}
|
|
316
|
-
exports.endsWith = endsWith;
|
|
317
318
|
function stringContains(str, substring) {
|
|
318
319
|
return str.indexOf(substring) !== -1;
|
|
319
320
|
}
|
|
320
|
-
exports.stringContains = stringContains;
|
|
321
321
|
function createGetCanonicalFileName(useCaseSensitiveFileNames) {
|
|
322
322
|
return useCaseSensitiveFileNames ? identity : toFileNameLowerCase;
|
|
323
323
|
}
|
|
324
|
-
exports.createGetCanonicalFileName = createGetCanonicalFileName;
|
|
325
324
|
function startsWith(str, prefix) {
|
|
326
325
|
return str.lastIndexOf(prefix, 0) === 0;
|
|
327
326
|
}
|
|
328
|
-
exports.startsWith = startsWith;
|
|
329
327
|
//# sourceMappingURL=core.js.map
|
package/lib/typescript/path.js
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.directorySeparator = void 0;
|
|
4
|
+
exports.isRootedDiskPath = isRootedDiskPath;
|
|
5
|
+
exports.hasExtension = hasExtension;
|
|
6
|
+
exports.fileExtensionIsOneOf = fileExtensionIsOneOf;
|
|
7
|
+
exports.getDirectoryPath = getDirectoryPath;
|
|
8
|
+
exports.combinePaths = combinePaths;
|
|
9
|
+
exports.getNormalizedPathComponents = getNormalizedPathComponents;
|
|
10
|
+
exports.normalizePath = normalizePath;
|
|
11
|
+
exports.removeTrailingDirectorySeparator = removeTrailingDirectorySeparator;
|
|
12
|
+
exports.containsPath = containsPath;
|
|
4
13
|
const core_1 = require("./core");
|
|
5
|
-
require("./types");
|
|
6
14
|
/**
|
|
7
15
|
* Internally, we represent paths as strings with '/' as the directory separator.
|
|
8
16
|
* When we make system calls (eg: LanguageServiceHost.getDirectory()),
|
|
@@ -26,11 +34,9 @@ function isAnyDirectorySeparator(charCode) {
|
|
|
26
34
|
function isRootedDiskPath(path) {
|
|
27
35
|
return getEncodedRootLength(path) > 0;
|
|
28
36
|
}
|
|
29
|
-
exports.isRootedDiskPath = isRootedDiskPath;
|
|
30
37
|
function hasExtension(fileName) {
|
|
31
38
|
return (0, core_1.stringContains)(getBaseFileName(fileName), ".");
|
|
32
39
|
}
|
|
33
|
-
exports.hasExtension = hasExtension;
|
|
34
40
|
function fileExtensionIs(path, extension) {
|
|
35
41
|
return path.length > extension.length && (0, core_1.endsWith)(path, extension);
|
|
36
42
|
}
|
|
@@ -42,7 +48,6 @@ function fileExtensionIsOneOf(path, extensions) {
|
|
|
42
48
|
}
|
|
43
49
|
return false;
|
|
44
50
|
}
|
|
45
|
-
exports.fileExtensionIsOneOf = fileExtensionIsOneOf;
|
|
46
51
|
/**
|
|
47
52
|
* Determines whether a path has a trailing separator (`/` or `\\`).
|
|
48
53
|
*/
|
|
@@ -171,7 +176,6 @@ function getDirectoryPath(path) {
|
|
|
171
176
|
path = removeTrailingDirectorySeparator(path);
|
|
172
177
|
return path.slice(0, Math.max(rootLength, path.lastIndexOf(exports.directorySeparator)));
|
|
173
178
|
}
|
|
174
|
-
exports.getDirectoryPath = getDirectoryPath;
|
|
175
179
|
function getBaseFileName(path, extensions, ignoreCase) {
|
|
176
180
|
path = normalizeSlashes(path);
|
|
177
181
|
// if the path provided is itself the root, then it has not file name.
|
|
@@ -357,7 +361,6 @@ function combinePaths(path, ...paths) {
|
|
|
357
361
|
}
|
|
358
362
|
return path;
|
|
359
363
|
}
|
|
360
|
-
exports.combinePaths = combinePaths;
|
|
361
364
|
/**
|
|
362
365
|
* Parse a path into an array containing a root component (at index 0) and zero or more path
|
|
363
366
|
* components (at indices > 0). The result is normalized.
|
|
@@ -371,7 +374,6 @@ exports.combinePaths = combinePaths;
|
|
|
371
374
|
function getNormalizedPathComponents(path, currentDirectory) {
|
|
372
375
|
return reducePathComponents(getPathComponents(path, currentDirectory));
|
|
373
376
|
}
|
|
374
|
-
exports.getNormalizedPathComponents = getNormalizedPathComponents;
|
|
375
377
|
function normalizePath(path) {
|
|
376
378
|
path = normalizeSlashes(path);
|
|
377
379
|
// Most paths don't require normalization
|
|
@@ -390,14 +392,12 @@ function normalizePath(path) {
|
|
|
390
392
|
const normalized = getPathFromPathComponents(reducePathComponents(getPathComponents(path)));
|
|
391
393
|
return normalized && hasTrailingDirectorySeparator(path) ? ensureTrailingDirectorySeparator(normalized) : normalized;
|
|
392
394
|
}
|
|
393
|
-
exports.normalizePath = normalizePath;
|
|
394
395
|
function removeTrailingDirectorySeparator(path) {
|
|
395
396
|
if (hasTrailingDirectorySeparator(path)) {
|
|
396
397
|
return path.substr(0, path.length - 1);
|
|
397
398
|
}
|
|
398
399
|
return path;
|
|
399
400
|
}
|
|
400
|
-
exports.removeTrailingDirectorySeparator = removeTrailingDirectorySeparator;
|
|
401
401
|
function ensureTrailingDirectorySeparator(path) {
|
|
402
402
|
if (!hasTrailingDirectorySeparator(path)) {
|
|
403
403
|
return path + exports.directorySeparator;
|
|
@@ -435,5 +435,4 @@ function containsPath(parent, child, currentDirectory, ignoreCase) {
|
|
|
435
435
|
}
|
|
436
436
|
return true;
|
|
437
437
|
}
|
|
438
|
-
exports.containsPath = containsPath;
|
|
439
438
|
//# sourceMappingURL=path.js.map
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.matchFiles =
|
|
3
|
+
exports.matchFiles = matchFiles;
|
|
4
4
|
const core_1 = require("./core");
|
|
5
5
|
const path_1 = require("./path");
|
|
6
|
-
require("./types");
|
|
7
6
|
// KLUDGE: Don't assume one 'node_modules' links to another. More likely a single directory inside the node_modules is the symlink.
|
|
8
7
|
// ALso, don't assume that an `@foo` directory is linked. More likely the contents of that are linked.
|
|
9
8
|
// Reserved characters, forces escaping of any non-word (or digit), non-whitespace character.
|
|
@@ -212,7 +211,6 @@ function matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNa
|
|
|
212
211
|
}
|
|
213
212
|
}
|
|
214
213
|
}
|
|
215
|
-
exports.matchFiles = matchFiles;
|
|
216
214
|
/**
|
|
217
215
|
* Computes the unique non-wildcard base paths amongst the provided include patterns.
|
|
218
216
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volar/typescript",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"**/*.js",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
"directory": "packages/typescript"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@volar/language-core": "2.3.
|
|
15
|
+
"@volar/language-core": "2.3.1",
|
|
16
16
|
"path-browserify": "^1.0.1",
|
|
17
17
|
"vscode-uri": "^3.0.8"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/node": "latest",
|
|
21
21
|
"@types/path-browserify": "latest",
|
|
22
|
-
"@volar/language-service": "2.3.
|
|
22
|
+
"@volar/language-service": "2.3.1"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "51742317a2950abd97e1a1a266b2c137bede4ad3"
|
|
25
25
|
}
|