Files
docusaurus/website/tsconfig.skipLibCheck.json
2026-06-04 19:29:20 +02:00

11 lines
363 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
// There is no --skipLibCheck CLI option, so we have to create a config file
// Some CI workflows will run the following command:
// pnpm --filter website typecheck --project tsconfig.skipLibCheck.json
// See https://github.com/facebook/docusaurus/pull/10486
"skipLibCheck": true
}
}