Recently, the TFS repository at my workplace underwent a migration process right in the middle of my Angular2 project. As a result, I now find myself transferring my ongoing Angular2 developments to the new repository and addressing any gaps that arise.
During this migration, one thing that caught my attention was the absence of the typings folder. It dawned on me that the typings setup had been undergoing changes approximately a year ago.
With these observations in mind, I'm curious about the best approach to ensure that my typings align with the latest standards for my application. Should I expect typings to be automatically configured when executing "npm install" based on the package.json settings? It appears that TypeScript files may be installed within relevant subdirectories in node_modules. Considering this, is it safe to assume that the typings folder in the root directory of my app can be removed as it seems outdated?