-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
compileOptions
in deno.json
doesn't support skipLibCheck
#21855
Comments
I don't think there will be much of a performance improvement here because we already do this for remote modules when you don't specify |
@dsherret does this option in TSC works in the same way as our |
I think I found a use case for this, however I'm not entirely sure. I think it's related to these, but I'm also not entirely sure of that:
Quote from microsoft/TypeScript#33111:
Anyways, my personal case is the following: I imported https://github.com/xstevenyung/fresh-seo into my /// <reference no-default-lib="true" />
/// <reference lib="dom" />
/// <reference lib="dom.asynciterable" />
/// <reference lib="deno.ns" />
/// <reference lib="deno.unstable" /> Notice how there's no Again, I'm not really sure if |
Enabling this setting can be a performance benefit to a codebase when type-checking of
.d.ts
files isn't required.See denoland/std#4134
See https://www.typescriptlang.org/tsconfig#skipLibCheck
The text was updated successfully, but these errors were encountered: