@volar/typescript 1.2.0-alpha.13 → 1.2.0-alpha.14
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/out/getProgram.js +6 -5
- package/package.json +3 -3
package/out/getProgram.js
CHANGED
|
@@ -21,11 +21,12 @@ function getProgram(ts, core, ls) {
|
|
|
21
21
|
}
|
|
22
22
|
return target[property];
|
|
23
23
|
},
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
24
|
+
// commented out because it causes https://github.com/vuejs/language-tools/issues/2403
|
|
25
|
+
// set: (_target, property, newValue) => {
|
|
26
|
+
// const program = getProgram();
|
|
27
|
+
// (program as any)[property] = newValue;
|
|
28
|
+
// return true;
|
|
29
|
+
// },
|
|
29
30
|
});
|
|
30
31
|
function getProgram() {
|
|
31
32
|
return ls.getProgram();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volar/typescript",
|
|
3
|
-
"version": "1.2.0-alpha.
|
|
3
|
+
"version": "1.2.0-alpha.14",
|
|
4
4
|
"main": "out/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"directory": "packages/typescript"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@volar/language-core": "1.2.0-alpha.
|
|
16
|
+
"@volar/language-core": "1.2.0-alpha.14"
|
|
17
17
|
},
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "8257fccecf0ace51d89fff6d6f47a3f95b4ddd10"
|
|
19
19
|
}
|