Quantcast
Viewing latest article 27
Browse Latest Browse All 39

Answer by Chris Krycho for tsc is trying to resolve relative path modules in the wrong folder

You can resolve this by using the "paths" key in the "compilerOptions" in your tsconfig.json. Something like this:

{"compilerOptions": {"paths": {"myLib/*": "node_modules/myLib/dist/*"    }  }}

Sadly, this is something of a standing issue with how the TypeScript compiler resolves definition files when you have a "types" key in your package.json.


Viewing latest article 27
Browse Latest Browse All 39

Trending Articles