I've recently started using the new @typings feature, and I noticed that when I run npm install --save @types/react
, it creates an @typings
folder within the node_modules
directory. Additionally, it adds the dependency @types/react: ^0.14.43
in the package.json
.
However, I found that when I clean out the node_modules directory and reinstall (npm i), the @typings are not reinstalled. Is this the expected behavior?
Sincerely, James