build: Exclude test files from TypeScript compilation

- Add exclusion for .test.ts and .spec.ts files in core tsconfig
- Allows tests to exist in source without blocking compilation
This commit is contained in:
Rowboat Developer 2026-04-17 09:23:57 -05:00
parent e1e6fa92e8
commit c550623754

View file

@ -9,5 +9,9 @@
},
"include": [
"src"
],
"exclude": [
"src/**/*.test.ts",
"src/**/*.spec.ts"
]
}