Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 919 Bytes

typecheck.md

File metadata and controls

22 lines (16 loc) · 919 Bytes
title description
nuxi typecheck
The typecheck command runs vue-tsc to check types throughout your app.

nuxi typecheck

npx nuxi typecheck [--log-level] [rootDir]

The typecheck command runs vue-tsc to check types throughout your app.

Option Default Description
rootDir . The directory of the target application.

This command sets process.env.NODE_ENV to production. To override, define NODE_ENV in a .env file or as a command-line argument.

::alert You can also enable type-checking at build or development time by installing typescript and vue-tsc as devDependencies and enabling the typescript.typeCheck option in your nuxt.config file. ::