OS: Windows 10 Pro
IDE: Visual Studio 2015 Community
So I've been trying to get the '5 minute quickstart' demo (https://angular.io/guide/quickstart) to work on VS 2015, without success.
I have a package.json file 'included' in my project:
{
"name": "TypeScriptHTMLApp2",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"dependencies": {
"angular2": "2.0.0-alpha.46",
"systemjs": "0.19.6"
}
}
and have 'excluded' the 'node_modules' folder, because when included it was generating many duplicate error messages.
But I'm getting error TS2307 'Cannot find module 'angular2/angular2' on the following line:
import {Component, bootstrap} from "angular2/angular2";
How do I resolve this issue so as to make this demo work?
Many thanks in advance