chore: update tsconfig.json to exclude additional test files

This commit is contained in:
Danny Avila 2025-07-16 09:44:33 -04:00 committed by Marco Beretta
parent 0b5155d277
commit e7aa83e073
No known key found for this signature in database
GPG key ID: D918033D8E74CC11

View file

@ -23,5 +23,12 @@
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["dist", "node_modules", "**/*.test.ts", "**/*.test.tsx"]
"exclude": [
"dist",
"node_modules",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx"
]
}