I'm using a 3rd party Javascript library that comes with an index.d.ts file. However, that file is not compatible with my version of TS. I've made a fix that works for me and submitted it to the library creator. In the meanwhile, I'd like to use this fix. I need to commit it to VCS for my entire team to use. node_modules
folder is not committed to VCS, its content is installed on checkout, so I can't just overwrite / get rid of the file provided by 3rd party.
Where do I put my custom .d.ts file and how do I tell typescript to use it over supplied one?