From d4ec09714d36fdc8875a96a5732686e78cddfa49 Mon Sep 17 00:00:00 2001 From: Notas Hellout <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Fri, 31 Dec 2021 16:53:28 +0100 Subject: [PATCH] Improve wording in TypeScript recipe --- docs/recipes/typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes/typescript.md b/docs/recipes/typescript.md index 6013fbe48..ae24594be 100644 --- a/docs/recipes/typescript.md +++ b/docs/recipes/typescript.md @@ -18,7 +18,7 @@ You can use [`ts-node`] to do live testing without transpiling. This can be espe `npm install --save-dev typescript ts-node` -Then, depending on whether or not your package is of type `module` or not, the required setup differs. See either: +The required setup depends on the type of your package: 1. [for packages with type "module"](#for-packages-with-type-module) 2. [for packages without type "module"](#for-packages-without-type-module)