2026-05-16 19:09:32 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-05-17 07:41:15 -07:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"composite": false
|
2026-05-16 19:09:32 -07:00
|
|
|
},
|
2026-05-17 07:41:15 -07:00
|
|
|
"exclude": ["node_modules", "dist", ".turbo", "**/*.test.ts"]
|
2026-05-16 19:09:32 -07:00
|
|
|
}
|