Install our dependencies
Now we can use npm install to install packages. First install TypeScript and gulp globally. (You might need to start npm install commands in this guide with sudo if you’re on a Unix system.)
npm install -g typescript gulp-cli
Then install gulp and gulp-typescript in your project’s dev dependencies. Gulp-typescript is a gulp plugin for Typescript.
npm install --save-dev gulp gulp-typescript
Please login to continue.