vue-tsc 1.3.7 → 1.3.9
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/index.js +2 -0
- package/package.json +4 -4
package/out/index.js
CHANGED
|
@@ -33,7 +33,9 @@ function createProgram(options) {
|
|
|
33
33
|
const vueCompilerOptions = getVueCompilerOptions();
|
|
34
34
|
const scripts = new Map();
|
|
35
35
|
const vueLsHost = new Proxy({
|
|
36
|
+
// avoid failed with tsc built-in fileExists
|
|
36
37
|
resolveModuleNames: undefined,
|
|
38
|
+
resolveModuleNameLiterals: undefined,
|
|
37
39
|
writeFile: (fileName, content) => {
|
|
38
40
|
if (fileName.indexOf('__VLS_') === -1) {
|
|
39
41
|
ctx.options.host.writeFile(fileName, content, false);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-tsc",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.9",
|
|
4
4
|
"main": "out/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"vue-tsc": "./bin/vue-tsc.js"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@volar/vue-language-core": "1.3.
|
|
21
|
-
"@volar/vue-typescript": "1.3.
|
|
20
|
+
"@volar/vue-language-core": "1.3.9",
|
|
21
|
+
"@volar/vue-typescript": "1.3.9"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"typescript": "*"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "592faa8030c9b3cd86480e412f14a16d71c8547b"
|
|
27
27
|
}
|