Currently, I am in the process of setting up my machine for Angular development by following the guidelines provided on https://angular.io/docs/ts/latest/quickstart.html
As I proceeded to run "npm start" to launch my site, I encountered an issue with the TypeScript compilation failing.
Details of my versions:
tsc version: 3.10.8 node version: 6.6.0
> tsc
// Errors and compilation issues displayed here
.... (omitted for brevity)
// Error continues until reaching the npm error message
TypeError: Cannot read property 'parent' of undefined
at appendOuterTypeParameters ...
...
npm ERR! Please include the following file with any support request:
npm-debug.log
Here is my packages.json configuration:
{
"name": "angular2-quickstart",
"version": "1.0.0",
// Scripts definition and dependencies outlined here
...
}