I have a question about the @types dependencies in the package.json file:
According to the information provided in this URL, it is suggested to install types as runtime dependency npm install --save @types/lodash
TS 2.x d.ts Consumption
However, personally, I think it would be more logical to install the @types/....
packages as dev dependency
npm install --save-dev @types/lodash
What do you think about this?