In the LinkToken.sol contract inside the mocks folder present in test folder, the LinkToken contract is importing the ERC20 contract in the following way:
import {ERC20} from "@solmate/tokens/ERC20.sol";
But is showing that the contract is not found in vs code.
However if I change it to like this:
import {ERC20} from "@solmate/src/tokens/ERC20.sol";
It seems to be working fine.
Am I alone facing this problem or it is the same for everyone else?
In the LinkToken.sol contract inside the mocks folder present in test folder, the LinkToken contract is importing the ERC20 contract in the following way:
import {ERC20} from "@solmate/tokens/ERC20.sol";
But is showing that the contract is not found in vs code.However if I change it to like this:
import {ERC20} from "@solmate/src/tokens/ERC20.sol";
It seems to be working fine.Am I alone facing this problem or it is the same for everyone else?