Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit b7cd251

Browse files
committed
Only gitignore generated tsconfigs, not all
`tsconfig.json` matched *all* tsconfig.json files but it was only meant for the tsconfig in the repository root. Stumbled on this when I was adding tsconfigs for #494.
1 parent 73fd322 commit b7cd251

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ lerna-debug.log
5656
install.json
5757

5858
# Autogenerated tsconfig.json files
59-
tsconfig.json
60-
samples/tsconfig.json
61-
services/tsconfig.json
62-
utils/tsconfig.json
59+
/tsconfig.json
60+
/samples/tsconfig.json
61+
/services/tsconfig.json
62+
/utils/tsconfig.json

.prettierignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ docs/build
33
coverage
44

55
# Autogenerated tsconfig.json files
6-
tsconfig.json
7-
samples/tsconfig.json
8-
services/tsconfig.json
9-
utils/tsconfig.json
6+
/tsconfig.json
7+
/samples/tsconfig.json
8+
/services/tsconfig.json
9+
/utils/tsconfig.json

0 commit comments

Comments
 (0)