mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-28 17:57:48 +02:00
Co-authored-by: Joshua Chen <sidachen2003@gmail.com> Co-authored-by: sebastienlorber <lorber.sebastien@gmail.com>
40 lines
1.4 KiB
JSON
40 lines
1.4 KiB
JSON
{
|
|
// This file is not used in compilation. It is here just for a nice editor experience.
|
|
"extends": "@docusaurus/tsconfig",
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ESNext"],
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true,
|
|
"allowArbitraryExtensions": true,
|
|
|
|
// Duplicated from the root config, because TS does not support extending
|
|
// multiple configs and we want to dogfood the @docusaurus/tsconfig one
|
|
"allowUnreachableCode": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictBindCallApply": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
// This is important. We run `yarn tsc` in website so we can catch issues
|
|
// with our declaration files (mostly names that are forgotten to be
|
|
// imported, invalid semantics...). Because we don't have end-to-end type
|
|
// tests, removing this would make things much harder to catch.
|
|
"skipLibCheck": false,
|
|
"types": ["jest"]
|
|
},
|
|
"exclude": ["src/sw.js"]
|
|
}
|