Skip to content

Commit 92fbea9

Browse files
committed
fix: exclude backup directories from TypeScript compilation
- Update tsconfig.json to exclude *.backup and backup/**/* directories - Resolves build errors from removed analyzer files
1 parent 34dbe98 commit 92fbea9

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

apps/api/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
],
2727
"exclude": [
2828
"node_modules",
29-
"dist"
29+
"dist",
30+
"**/*.backup",
31+
"**/backup/**/*"
3032
]
3133
}

0 commit comments

Comments
 (0)