I have simple asp.net core web application, where I have installed javascript libraries using libman.
I want to use typescript, so I have installed typescript definition files for the libraries using npm, e.g:
npm install @types/jquery --save-dev
npm install @types/bootstrap --save-dev
I would like to add the .d.ts files to source control, so that other developers does not have to rely on NPM - it is the purpose of libman, isn't it?
/node_modules folder is ignored in .gitignore by default.
How do I include the typescript definition files?