docusaurus/website/tsconfig.skipLibCheck.json

10 lines
364 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:
// yarn workspace website typecheck --project tsconfig.skipLibCheck.json
// See https://github.com/facebook/docusaurus/pull/10486
"skipLibCheck": true
}
}