I have a file structure like below
main
|
-------------
| |
Folder1 Folder2
I have below JS snippets in my extension I want this to be available only on all the js files under Folder1 and similarly, I have some snippets that I want to be available only on the JS files under Folder2
"Print to console": {
"scope": "javascript,typescript",
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
}
don't want to do any manual changes to my vs code it should drive from the vs code extensions I have gone through the documentation but still no luck, could someone please confirm if this is possible?