vue-tsc 3.0.0-beta.5 → 3.0.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/README.md +2 -23
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,19 +1,6 @@
|
|
|
1
1
|
# vue-tsc
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Usage: `vue-tsc --noEmit && vite build`
|
|
6
|
-
|
|
7
|
-
Vue 3 command line Type-Checking tool base on IDE plugin [Volar](https://github.com/vuejs/language-tools).
|
|
8
|
-
|
|
9
|
-
Roadmap:
|
|
10
|
-
|
|
11
|
-
- [x] Type-Checking with `--noEmit`
|
|
12
|
-
- [x] Use released LSP module
|
|
13
|
-
- [x] Make `typescript` as peerDependencies
|
|
14
|
-
- [x] Cleaner dependencies (remove `prettyhtml`, `prettier` etc.) (with `vscode-vue-languageservice` version >= 0.26.4)
|
|
15
|
-
- [x] dts emit support
|
|
16
|
-
- [x] Watch mode support
|
|
3
|
+
Vue 3 command line Type-Checking tool.
|
|
17
4
|
|
|
18
5
|
## Usage
|
|
19
6
|
|
|
@@ -25,12 +12,4 @@ Build dts:
|
|
|
25
12
|
|
|
26
13
|
`vue-tsc --declaration --emitDeclarationOnly`
|
|
27
14
|
|
|
28
|
-
Check out https://github.com/vuejs/language-tools/discussions/640#discussioncomment-1555479 for example repo.
|
|
29
|
-
|
|
30
|
-
## Sponsors
|
|
31
|
-
|
|
32
|
-
<p align="center">
|
|
33
|
-
<a href="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/sponsors.svg">
|
|
34
|
-
<img src="https://cdn.jsdelivr.net/gh/johnsoncodehk/sponsors/sponsors.svg"/>
|
|
35
|
-
</a>
|
|
36
|
-
</p>
|
|
15
|
+
Check out https://github.com/vuejs/language-tools/discussions/640#discussioncomment-1555479 for the example repo.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue-tsc",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"files": [
|
|
6
6
|
"bin",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"typescript": ">=5.0.0"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@volar/typescript": "2.4.
|
|
24
|
-
"@vue/language-core": "3.0.
|
|
23
|
+
"@volar/typescript": "2.4.17",
|
|
24
|
+
"@vue/language-core": "3.0.1"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^22.10.4"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "43884409838dfdce44de51f6622926ac6ddd7318"
|
|
30
30
|
}
|