You can just use VS as an editor, there is no need for solution files or anything else.
To create a node.js application, first install the typescript package:
npm install -g typescript
Then compile your file in javascript:
tsc app.ts
Run the application as a node process:
node app.js
mihai
source share