docs: add information about type checking to `typescript.typeCheck` config. (#8632)

#8630
This commit is contained in:
Pascal Sthamer 2022-11-03 15:04:37 +01:00 committed by GitHub
parent 7c4899a7ab
commit 2cbdf3684d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ export default defineUntypedSchema({
* Enable build-time type checking. * Enable build-time type checking.
* *
* If set to true, this will type check in development. You can restrict this to build-time type checking by setting it to `build`. * If set to true, this will type check in development. You can restrict this to build-time type checking by setting it to `build`.
* Requires to install `typescript` and `vue-tsc` as dev dependencies.
*
* @see https://v3.nuxtjs.org/guide/concepts/typescript#type-checking
* *
* @type {boolean | 'build'} * @type {boolean | 'build'}
*/ */