mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-28 09:47:48 +02:00
40 lines
1.5 KiB
JSON
40 lines
1.5 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": ["build", ".docusaurus", "src/sw.js", "_dogfooding/_asset-tests"]
|
|
}
|