Enable skipLibCheck by default (#5872)

This commit is contained in:
Bjorn Lu 2023-01-17 09:43:07 +08:00 committed by GitHub
parent 8c100a6fe6
commit b66d7195c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Enable `skipLibCheck` by default

View file

@ -15,6 +15,8 @@
// Report an error when importing a file using a casing different from the casing on disk.
"forceConsistentCasingInFileNames": true,
// Properly support importing CJS modules in ESM
"esModuleInterop": true
"esModuleInterop": true,
// Skip typechecking libraries and .d.ts files
"skipLibCheck": true
}
}