2026-01-25 15:33:59 -08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2026-01-25 18:13:17 -08:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
|
|
|
"jsx": "react-jsx",
|
2026-01-25 15:33:59 -08:00
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": false,
|
2026-01-25 18:13:17 -08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
2026-01-25 15:33:59 -08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": true
|
|
|
|
|
},
|
|
|
|
|
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
|
|
|
|
|
}
|