I am new to angular2 but quite mature with javascript development. I used many jQuery plugins in my previous projects. I want to use them all in my new angular2 project as well.
Things which I already know:
- I have to use typescript definitions files to use them.
But what I want to know is
- Where to place them in angular2 project.
- Should I use npm to download them, so that they got placed into node_modules folder.
- Should I manually copy them in typings folder.
I tried with point 2 but was not able to take it's reference. Can any one tell me that How can I import third-party typescript plugins and import them in my angular2 components. What is best practice?
Secondly, what is the use of typings folder?