-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot find module './typechain/IWETHGateway' or its corresponding type declarations. #330
Comments
I'm running into similar issues when I attempt to compile just importing of the contract-helper modules:
tsc compile errors:
Any pointers would be appreciated! |
+1 on this |
Hey @simeoni3 @peterfisher - just for context, can you provide what version of Angular your dapp is using? Also, can you provide what version of TypeScript, if any, you are running as well? Thanks! |
+1 on this. tsc compile errors:
|
@simeoni3 @bravura-quark @peterfisher @malsamax To fix this, add this to your Learn more about this option here: https://www.typescriptlang.org/tsconfig#skipLibCheck It worked out fine, and I hope that helps you guys too Cheers |
That would make sense! https://github.com/aave/aave-utilities/blob/master/tsconfig.json#L21C5-L21C26 |
Question
Hello guys,
I installed required dependencies in my Angular dApp as described in the README:
I coded the following typescript function
However when I try to compile my application I get a bunch of errors reporting some missing dependencies:
I tried to import
UiIncentiveDataProvider
also from other locations:import { UiIncentiveDataProvider } from '@aave/contract-helpers/dist/esm';
import { UiIncentiveDataProvider } from '@aave/contract-helpers/dist/cjs';
but I get the very same result.
Is there something wrong in my approach?
Thank you very much.
Andrea
The text was updated successfully, but these errors were encountered: