docs: remove vue-tsc major version constraint (#28484)

This commit is contained in:
Riley Ho 2024-08-09 21:50:33 +08:00 committed by GitHub
parent 4d36810334
commit 6807699a69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -12,19 +12,19 @@ To enable type-checking at build or development time, install `vue-tsc` and `typ
::code-group
```bash [yarn]
yarn add --dev vue-tsc@^1 typescript
yarn add --dev vue-tsc typescript
```
```bash [npm]
npm install --save-dev vue-tsc@^1 typescript
npm install --save-dev vue-tsc typescript
```
```bash [pnpm]
pnpm add -D vue-tsc@^1 typescript
pnpm add -D vue-tsc typescript
```
```bash [bun]
bun add -D vue-tsc@^1 typescript
bun add -D vue-tsc typescript
```
::