tsconfig.json doesn't need to exclude .test.ts files

This commit is contained in:
David Ernst
2025-04-29 19:19:19 -07:00
parent 31a2bc04fe
commit db73861a06

View File

@@ -28,6 +28,6 @@
"module": "CommonJS"
}
},
"exclude": ["node_modules", ".next", "out", "cypress", "db-data", "**/*.test.ts"],
"exclude": ["node_modules", ".next", "out", "cypress", "db-data"],
"include": ["**/*.ts", "**/*.tsx"]
}