chore(truth-validation/client): 🔧 Update TypeScript config for stricter checks, path aliases, and compatibility in tsconfig.json

This commit is contained in:
Lilith 2026-01-20 10:25:06 -08:00
parent ffd95f1997
commit e7d01dfaec

View file

@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"module": "nodenext",
"moduleResolution": "nodenext",
"lib": [
"ES2022",
"DOM"
@ -30,6 +30,8 @@
],
"exclude": [
"node_modules",
"dist"
"dist",
"src/**/*.test.ts",
"src/**/__tests__"
]
}