Skip to content

Commit

Permalink
Enable skipLibCheck by default (#5872)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluwy committed Jan 17, 2023
1 parent 8c100a6 commit b66d719
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/witty-pugs-drum.md
@@ -0,0 +1,5 @@
---
'astro': patch
---

Enable `skipLibCheck` by default
4 changes: 3 additions & 1 deletion packages/astro/tsconfigs/base.json
Expand Up @@ -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
}
}

0 comments on commit b66d719

Please sign in to comment.