It all began when the command tsc --init
refused to work...
I'm curious, what sets apart these three commands:
npm install -g typescript
npm install -g tsc
npm install -g ntsc
Initially, I assumed "tsc" was just an abbreviation for typescript, but listing them out reveals potential differences in versions.
PS C:\angular2-app> npm list -g tsc
C:\Users\Wheeeeee\AppData\Roaming\npm
└── [email protected]PS C:\angular2-app> npm list -g typescript
C:\Users\Wheeeeee\AppData\Roaming\npm
└── [email protected]
So, what exactly distinguishes between the two. Could it be that typescript is the library while tsc serves as some sort of command line assist?
P.S. Not overly concerned about ntsc, just throwing it in the mix in case you have any insights on it. Otherwise, feel free to disregard.
EDIT: With the response below in mind, how does Powershell discern which tsk I am attempting to utilize? How can I specify?