nonebot2/website/tsconfig.json
2024-09-18 15:52:15 +08:00

43 lines
1.5 KiB
JSON

{
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@nullbot/docusaurus-tsconfig",
"compilerOptions": {
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@theme/*": ["./src/theme/*"]
},
"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
}
}