{ "compilerOptions": { // "incremental": true, // "composite": true, // "tsBuildInfoFile": "./", // "disableSourceOfProjectReferenceRedirect": true, // "disableSolutionSearching": true, // "disableReferencedProjectLoad": true, "target": "ESNext", // "lib": [], // "jsx": "preserve", // "experimentalDecorators": true, // "emitDecoratorMetadata": true, // "jsxFactory": "", // "jsxFragmentFactory": "", // "jsxImportSource": "", // "reactNamespace": "", // "noLib": true, // "useDefineForClassFields": true, "module": "ESNext", // "rootDir": "./", "moduleResolution": "node", // "baseUrl": "./", // "paths": {}, // "rootDirs": [], // "typeRoots": [], // "types": [], // "allowUmdGlobalAccess": true, "resolveJsonModule": true, // "noResolve": true, // "allowJs": true, // "checkJs": true, // "maxNodeModuleJsDepth": 1, // "declaration": true, // "declarationMap": true, // "emitDeclarationOnly": true, // "sourceMap": true, // "outFile": "./", // "outDir": "./", // "removeComments": true, // "noEmit": true, // "importHelpers": true, // "importsNotUsedAsValues": "remove", // "downlevelIteration": true, // "sourceRoot": "", // "mapRoot": "", // "inlineSourceMap": true, // "inlineSources": true, // "emitBOM": true, // "newLine": "crlf", // "stripInternal": true, // "noEmitHelpers": true, // "noEmitOnError": true, // "preserveConstEnums": true, // "declarationDir": "./", // "isolatedModules": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true, // "preserveSymlinks": true, "forceConsistentCasingInFileNames": true, "strict": true, "noImplicitAny": false, // "strictNullChecks": true, // "strictFunctionTypes": true, // "strictBindCallApply": true, // "strictPropertyInitialization": true, // "noImplicitThis": true, // "useUnknownInCatchVariables": true, // "alwaysStrict": true, // "noUnusedLocals": true, // "noUnusedParameters": true, // "exactOptionalPropertyTypes": true, // "noImplicitReturns": true, // "noFallthroughCasesInSwitch": true, // "noUncheckedIndexedAccess": true, // "noImplicitOverride": true, // "noPropertyAccessFromIndexSignature": true, // "allowUnusedLabels": true, // "allowUnreachableCode": true, // "skipDefaultLibCheck": true, "skipLibCheck": true }, "include": ["**/*", ".vitepress/**/*"], "exclude": ["node_modules"] }