I am working on a basic asp.net core web application and have integrated javascript libraries using libman.
Now, I am looking to incorporate typescript, therefore I have obtained typescript definition files for the libraries via npm. For example:
npm install @types/jquery --save-dev
npm install @types/bootstrap --save-dev
My goal is to add the .d.ts files to the source control so that other developers do not need to depend on NPM - after all, isn't that the purpose of libman?
The /node_modules folder is typically excluded in .gitignore by default.
How can I include the typescript definition files in my project?