Skip to content

Commit 894624e

Browse files
fix: exclude test files from TypeScript build
Test files (*.test.ts) were included in the tsc build which caused the Cloud Build to fail because vitest is only a devDependency. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f283987 commit 894624e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

app/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@
2121
"noFallthroughCasesInSwitch": true
2222
},
2323
"include": ["src"],
24+
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"],
2425
"references": [{ "path": "./tsconfig.node.json" }]
2526
}

0 commit comments

Comments
 (0)