From 80d41207f2a03734e0aed325c69d0f76a7d64d3c Mon Sep 17 00:00:00 2001 From: Yui Date: Mon, 22 May 2017 09:26:23 -0700 Subject: [PATCH] Updated TypeScript MSBuild In depth (markdown) --- TypeScript-MSBuild-In-depth.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/TypeScript-MSBuild-In-depth.md b/TypeScript-MSBuild-In-depth.md index 7f385da..bcff134 100644 --- a/TypeScript-MSBuild-In-depth.md +++ b/TypeScript-MSBuild-In-depth.md @@ -15,7 +15,7 @@ TypeScript NuGet contains two main folders 1. Microsoft.TypeScript.MSBuild.targets - The file set variables specific to a runtime platform, such as a path to `TypeScript.Tasks.dll`, before import `Microsoft.TypeScript.targets` from `tools` folder. + The file set variables specific to a run-time platform, such as a path to `TypeScript.Tasks.dll`, before import `Microsoft.TypeScript.targets` from `tools` folder. 2. Microsoft.TypeScript.MSBuild.props @@ -40,5 +40,10 @@ TypeScript NuGet contains two main folders contains `tsc.exe` and all dependency files to execute the exe. On Window, `TypeScript.Tasks.dll` uses the `tsc.exe` to build projects. - On non-Window, `TypeScript.Tasks.dll` uses `tsc.js`, running through command `node tsc.js `. + On non-Window, `TypeScript.Tasks.dll` uses `tsc.js`, running through command + + ``` + node tsc.js + ``` + Therefore, on non-Window platform, NodeJS is required to be installed. \ No newline at end of file