vue-tsc 1.6.3 → 1.7.0-alpha.0
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/README.md +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Install: `npm i vue-tsc -D`
|
|
|
4
4
|
|
|
5
5
|
Usage: `vue-tsc --noEmit && vite build`
|
|
6
6
|
|
|
7
|
-
Vue 3 command line Type-Checking tool base on IDE plugin [Volar](https://github.com/
|
|
7
|
+
Vue 3 command line Type-Checking tool base on IDE plugin [Volar](https://github.com/vuejs/language-tools).
|
|
8
8
|
|
|
9
9
|
Roadmap:
|
|
10
10
|
|
|
@@ -25,7 +25,7 @@ Build dts:
|
|
|
25
25
|
|
|
26
26
|
`vue-tsc --declaration --emitDeclarationOnly`
|
|
27
27
|
|
|
28
|
-
Check out https://github.com/
|
|
28
|
+
Check out https://github.com/vuejs/language-tools/discussions/640#discussioncomment-1555479 for example repo.
|
|
29
29
|
|
|
30
30
|
## Sponsors
|
|
31
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-tsc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0-alpha.0",
|
|
4
4
|
"main": "out/index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"vue-tsc": "./bin/vue-tsc.js"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@volar/vue-language-core": "1.
|
|
21
|
-
"@volar/vue-typescript": "1.
|
|
20
|
+
"@volar/vue-language-core": "1.7.0-alpha.0",
|
|
21
|
+
"@volar/vue-typescript": "1.7.0-alpha.0",
|
|
22
22
|
"semver": "^7.3.8"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"typescript": "*"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "03642106a0961897a059fde66ed626e2266d5979"
|
|
28
28
|
}
|