2026-05-16 19:09:32 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-05-17 07:41:16 -07:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ESNext",
|
2026-05-17 01:33:45 -07:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
2026-05-16 19:09:32 -07:00
|
|
|
"jsx": "react-jsx",
|
2026-05-17 07:41:16 -07:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-05-17 01:33:45 -07:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2026-05-17 07:41:16 -07:00
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"useDefineForClassFields": false,
|
|
|
|
|
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
|
|
|
|
|
"paths": {
|
|
|
|
|
"@features/*": ["./@features/*"],
|
|
|
|
|
"@packages/*": ["./@packages/*"]
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-05-16 19:09:32 -07:00
|
|
|
}
|