From 9f0644b7b0b4ebd962a8c9cd42fe6473351ef521 Mon Sep 17 00:00:00 2001 From: Augustin Mauroy Date: Tue, 30 Jul 2024 10:54:30 +0200 Subject: [PATCH] Update apps/site/pages/en/learn/typescript/transpile.md Co-authored-by: Antoine du Hamel Signed-off-by: Augustin Mauroy --- apps/site/pages/en/learn/typescript/transpile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/learn/typescript/transpile.md b/apps/site/pages/en/learn/typescript/transpile.md index 74afef50318f5..3452fb5de0a32 100644 --- a/apps/site/pages/en/learn/typescript/transpile.md +++ b/apps/site/pages/en/learn/typescript/transpile.md @@ -40,7 +40,7 @@ const isJustineAnAdult: boolean = isAdult(justine); In this example we're going to use npm, you can check our [our introduction to the npm package manager](/learn/getting-started/an-introduction-to-the-npm-package-manager) for more information. -There are two ways to install TypeScript, globally or locally. We recommend installing it globally for the sake of simplicity. +There are two ways to install TypeScript, globally or locally. We do not recommend installing it globally for the sake of everyone working with you. ```bash displayName="Install TypeScript globally" npm i -g typescript # -g is a shorthand for --global