We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9dc305 commit 110acf1Copy full SHA for 110acf1
1 file changed
test-failure.ts
@@ -0,0 +1,12 @@
1
+// This file intentionally has TypeScript errors to trigger CI failure
2
+const testFunction = (param: string): number => {
3
+ // Type error: returning string instead of number
4
+ return "this should be a number";
5
+}
6
+
7
+// Syntax error: missing closing brace
8
+function brokenFunction() {
9
+ console.log("missing closing brace"
10
11
12
+export { testFunction, brokenFunction };
0 commit comments