lorehub
Version:
Capture and surface the collective wisdom of your codebase
37 lines • 1.06 kB
JSON
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowJs": false,
"checkJs": false,
"noEmit": false,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"exactOptionalPropertyTypes": false,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"verbatimModuleSyntax": true,
"jsx": "react"
},
"include": ["src/**/*", "src/**/*.tsx"],
"exclude": ["node_modules", "dist", "coverage"]
}