I was wondering if it is possible for VSCode to pick up on multiple .vscode/settings.json
For instance if you are working in an monolithic environment with multiple smaller projects inside it, and each have their own .vscode/settings.json.
Can VSCode pickup on that, and apply the settings from the smaller projects .vscode/settings.json to their subtree and descendant files?
monolithic-project/
├── small-project1/
│ ├── .vsocde
│ │ └── settings.json
│ └── src/
│ └── index.ts
└── small-project2/
├── .vsocde
│ └── settings.json
└── src/
└── index.ts
Wanted effect:
monolithic-project/small-project1/.vscode/settings.json applies to monolithic-project/small-project1 and all descendant files.
monolithic-project/small-project2/.vscode/settings.json applies to monolithic-project/small-project2 and all descendant files.
I was wondering if it is possible for VSCode to pick up on multiple
.vscode/settings.jsonFor instance if you are working in an monolithic environment with multiple smaller projects inside it, and each have their own
.vscode/settings.json.Can VSCode pickup on that, and apply the settings from the smaller projects
.vscode/settings.jsonto their subtree and descendant files?Wanted effect:
monolithic-project/small-project1/.vscode/settings.jsonapplies tomonolithic-project/small-project1and all descendant files.monolithic-project/small-project2/.vscode/settings.jsonapplies tomonolithic-project/small-project2and all descendant files.