Recently, I came across an npm package that did not have TypeScript but provided its own index.d.ts file. However, the types in this file were incorrect and contributed by someone who was not actively maintaining the package. When I attempted to reference my corrected types using a /// If the types were sourced from DefinitelyTyped, it would be simpler as I could remove the incorrect ones, submit a PR with the fixes, and use my updated version locally while awaiting validation. However, since the index.d.ts is included within the library itself, does my only solution involve cloning the entire repository, making the necessary changes, submitting a PR, and hoping for quick integration and release of a new version? This approach seems cumbersome. Is there a way to instruct the compiler to disregard a specific index.d.ts file in node_modules so that only mine is recognized?