I have a silly question regarding the @types dependencies in the package.json file:
In the following URL it is explained that the types should be installed 
as runtime dependency npm install --save @types/lodash
TS 2.x d.ts Consumption
But to me is makes more sense to install the @types/.... packages 
as dev dependency npm install --save-dev @types/lodash
Any thoughts on this?
 
    