Me too faced the same problem. Use nodeJS command prompt instead of windows command prompt.
Step 1: Execute the npm install -g typescript
Step 2: tsc filename.ts
New file will be create same name and different extension as ".js"
Step 3: node filename.js
You can see output in screen. It works for me.