From 6b2bc680b06ffbbc7383c428f7e535bdbf1754b9 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 30 Jan 2023 10:56:30 +0000 Subject: [PATCH] docs: add comment about needing to install `@types/node` manually --- docs/3.api/5.commands/typecheck.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3.api/5.commands/typecheck.md b/docs/3.api/5.commands/typecheck.md index 53d8536db8..a7fec1dff7 100644 --- a/docs/3.api/5.commands/typecheck.md +++ b/docs/3.api/5.commands/typecheck.md @@ -18,5 +18,5 @@ Option | Default | Description 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 `vue-tsc` and `typescript` as devDependencies and enabling [the `typescript.typeCheck` option in your `nuxt.config` file](/docs/api/configuration/nuxt-config#typescript). +You can also enable type-checking at build or development time by installing `@types/node`, `typescript` and `vue-tsc` as devDependencies and enabling [the `typescript.typeCheck` option in your `nuxt.config` file](/docs/api/configuration/nuxt-config#typescript). ::