rowboat/apps/x/packages/core/tsconfig.json
Rowboat Developer c550623754 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
2026-04-17 09:23:57 -05:00

17 lines
No EOL
329 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"declaration": true,
"outDir": "dist",
"rootDir": "src",
"types": ["node"],
"jsx": "react-jsx"
},
"include": [
"src"
],
"exclude": [
"src/**/*.test.ts",
"src/**/*.spec.ts"
]
}