Tools I'm using... - Visual Studio 2015 - Gulp - TypeScript - Angular2
I've been struggling with importing in Typescript. I started reading ngBook2 and as I started the first example I noticed my import statement wasn't recognized by the IDE though Gulp had no problem Transpiling.
I found a reference that wasn't set correctly and that resolved that problem.
So this was not working but now is. import { bootstrap } from 'angular2/platform/browser';
Now I'm having trouble importing jquery. Seems like an easy enough thing to do but I can't seem to get it done.
I've uploaded the project onto GitHub. https://github.com/robertdunaway/katas-angular2/tree/master/001%20Angular2%20-%20getting%20started/after
When you load up the project the dependencies will be fetched. This will take a minute the first time. Then the default Gulp task will run and when it reaches the TypeStript code it errors.
Thanks, Bob