chore(fontend-users): 🔧 Update TypeScript compiler options (strict checks, path mappings) in frontend-users email feature

This commit is contained in:
Lilith 2026-01-25 09:51:00 -08:00
parent 2f4299f8d5
commit fbb274a3b1

View file

@ -17,7 +17,11 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true
"noUncheckedIndexedAccess": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src"]
}