Working with Visual Studio Code. It suggested to import types definition and downloaded them into /typings folder.
Do I need to check this folder in or it can be restored somehow?
Thanks.
I found that checking in the tsd.json helps with setting up new developers or even reinstalling typings if you need to clone the repo somewhere as tsd wont know what to reinstall if you do not.
tsd init
(this creates the tsd.json file)tsd install node --save
(this will create the typings folder if there isn't one and add the node typing to the tsd.json)tsd install
from root to get that typing goodness!source: https://github.com/DefinitelyTyped/tsd#quick-start