How to add folders to VS code that reference studio folders

I have a folder named Assets in ReplicatedStorage. I wanna add this folder to VS code so I can also store code in there
image
I create an empty Folder in vs code
image
then add it to my directonary

"ReplicatedStorage": {
      "$className": "ReplicatedStorage",
      "$ignoreUnknownInstances": true,
      "$path": "src/ReplicatedStorage",
      "Packages": {
        "$path": "Packages"
      },
      "Assets": {
        "$ignoreUnknownInstances": true,
        "$path": "src/ReplicatedStorage/Assets"
      }
    },

however when I connect to Rojo, it removes everything from my Assets folder and creates a second empty folder
image

try removing "$path": "src/ReplicatedStorage/Assets"

It then wants a className, which these aren’t classes

maybe you don’t need "$className": "ReplicatedStorage",?
i had the same problem before but i can’t remember what the solution is

"ReplicatedStorage": {
      "$ignoreUnknownInstances": true,
      "$path": "src/ReplicatedStorage",
      "Packages": {
        "$path": "Packages"
      },
      "Assets": {
        "$ignoreUnknownInstances": true,
        "$path": "src/ReplicatedStorage/Assets"
      }
    },

Those need the className to them