As I work on my project, I realize that I have many dependencies on libraries that support Angular2 but not Angular6. It can be challenging to determine if a library supports Angular2 from just reading their GitHub pages. One idea is to check the package.json file and look at the TypeScript version - if it's below 2.7.2 (the lowest Angular6 TypeScript version), then it definitely does not support Angular6. Is this correct? What is the best way to determine if a library supports Angular6 from its GitHub page?