Recently, I've delved into learning about Angular 2 and its accompanying technologies. In an attempt to create minified and "compiled" versions of my .ts files, I started using gulp-jspm-build. However, I encountered an error that has left me stumped. Any help would be greatly appreciated.
SyntaxError: app/menu/component.ts: Unexpected token (8:0)
6 | import {OnInit} from "@angular/core/metadata/lifecycle_hooks";
7 |
> 8 | @Component({
| ^
9 | selector: '[menu]',
10 | templateUrl: 'app/menu/template.html',
11 | })
at Parser.pp.raise...
I'm wondering if the absence of a typings.json file could be causing this issue?