I have a little problem there, i have a component that works. Its a basic component writing 'Hello World' for now that i use in a "angular-quickstart" app.
The thing is, i want my component to be able to use JQuery.
On its own, it is fine. i imported jquery via typings
and referenced it.
But i can't have access to it when i import my custom component from the "angular-quickstart". I import my component but there is not $ (Jquery) variable.
Is there any way to do this ? Or should i import JQuery via typings in my app as well ?
EDIT: i've been looking at this (https://github.com/thelgevold/angular-2-samples/tree/e7c7190a288a3c364701e8a04b9a3639359eb8e7) for half an hour and it seems like i should import jquery AND my component ...