Enable skipLibCheck by default (#5872)
This commit is contained in:
parent
8c100a6fe6
commit
b66d7195c1
2 changed files with 8 additions and 1 deletions
5
.changeset/witty-pugs-drum.md
Normal file
5
.changeset/witty-pugs-drum.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Enable `skipLibCheck` by default
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue