Skip to content

Commit ee8f6cd

Browse files
committed
chore: exclude .cache/ from tsconfig.check.json
Stray writers (Node compile-cache, corepack, pnpm RC) may drop files into .cache/ at the repo root. The new **/.cache/ gitignore prevents those from being tracked, but tsc would otherwise still try to type-check them. Add the same exclude to tsc's input set.
1 parent f7edf84 commit ee8f6cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.config/tsconfig.check.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
"verbatimModuleSyntax": false
1212
},
1313
"include": ["../**/*.ts", "../**/*.mts"],
14-
"exclude": ["../**/node_modules/**/*"]
14+
"exclude": ["../**/.cache/**", "../**/node_modules/**/*"]
1515
}

0 commit comments

Comments
 (0)