You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/introduction/getting-started.md
+10-2
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,15 @@ We assume you are already familiar with the basic usages of Vue before you conti
8
8
9
9
- Node.js `>= v18.0.0`.
10
10
- Vue `>= v3.6`.
11
-
- VSCode extension [TS Macro](https://marketplace.visualstudio.com/items?itemName=zhiyuanzmj.vscode-ts-macro) and `@ts-macro/tsc`.
11
+
- VSCode extension [TS Macro](https://marketplace.visualstudio.com/items?itemName=zhiyuanzmj.vscode-ts-macro) and install `@ts-macro/tsc` instead of `tsc` to typecheck.
12
+
```json
13
+
{
14
+
"scripts": {
15
+
"typecheck": "tsmc --noEmit"
16
+
// ...
17
+
}
18
+
}
19
+
```
12
20
13
21
### Install
14
22
@@ -17,7 +25,7 @@ We assume you are already familiar with the basic usages of Vue before you conti
17
25
pnpm add vue-jsx-vapor
18
26
19
27
# runtime
20
-
pnpm add https://pkg.pr.new/vue@eeab9c4
28
+
pnpm add https://pkg.pr.new/vue@3e7464f
21
29
```
22
30
23
31
The Vue Vapor runtime is not release, so we use [pkg.pr.new](https://github.com/stackblitz-labs/pkg.pr.new) to install.
0 commit comments