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
.