Skip to content
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

[Ember]: set skipLibCheck: true #269

Merged
merged 1 commit into from
May 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions bases/ember.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@
// will likely improve over time
"allowJs": false,

// Practically, it is *nearly* impossible to have every type-checked
// package in your dependency graph to have compatible types.
// Good stewards of the ecosystem may opt to set this to false and try to
// fix packages with failures, but for most people, the error information
// is inactionable noise.
"skipLibCheck": true,

// --- TS for SemVer Types compatibility
// Strictness settings -- you should *not* change these: Ember code is not
// guaranteed to type check with these set to looser values.
Expand Down Expand Up @@ -76,8 +83,9 @@

// Don't implicitly pull in declarations from `@types` packages unless we
// actually import from them AND the package in question doesn't bring its
// own types. You may wish to override this e.g. with `"types": ["node"]`
// if your project has build-time elements that use NodeJS APIs.
// own types.
//
// You may wish to override this e.g. with `"types": ["ember-source/types"]`
"types": []
}
}
Loading