Skip to content

Commit 2e34ea0

Browse files
Update VSCode settings to enhance file nesting patterns
This commit modifies the settings.json file to include a new pattern for TypeScript files, allowing for better organization of related files in the explorer. The addition of "*.ts": "$(capture).*.ts" improves project navigation within the IDE.
1 parent f0901ed commit 2e34ea0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ingestion/.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"explorer.fileNesting.enabled": true,
33
"explorer.fileNesting.patterns": {
4-
"package.json": "package-lock.json, .env, .env.example, .gitignore, .prettierrc, Dockerfile, nodemon.json, tsconfig.json, *.lock, README.md"
4+
"package.json": "package-lock.json, .env, .env.example, .gitignore, .prettierrc, Dockerfile, nodemon.json, tsconfig.json, *.lock, README.md",
5+
"*.ts": "$(capture).*.ts"
56
}
67
}

0 commit comments

Comments
 (0)