Open
Description
Description
Change the description method from absolute path to relative path
Solution
before
import {Pausable} from "@openzeppelin/contracts/lifecycle/Pausable.sol";
import {IAllocator} from "contracts/src/allocator/IAllocator.sol";
after
import "../../../@openzeppelin/contracts/lifecycle/Pausable.sol";
import "./IAllocator.sol";
reason:
Dependencies can't be resolved when referring to a contract after npm install