| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
This is likely to not ship in favor of #45771 |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fixes #44795
This PR changes the lib file resolving based on whether you have included an override in your tsconfig.json, so for example:
{ "compilerOptions": { "target": "es2015", "lib": ["es2015", { replace: "dom", with: "@types/web" }] } }Would never access lib.dom.d.ts if it were imported via a /// <reference lib="dom" /> - it would redirect to @types/web resolved relative to the tsconfig.json which is how it would be referred to by DT modules and libraries.
PR TODO