Help with default.project.json and rojo

When building a project via rojo with default.project.json:

{
    "name": "typecheckingtest",
    "emitLegacyScripts": false,
    "tree": {
      "$className": "DataModel",
  
      "ServerScriptService": {
        "$className": "ServerScriptService",
  
        "Test": {
            "$path": "src/Test"
          },
        
        "MainModule": {
          "Value": {
            "$className": "Folder",
            "Packages": {
             "$path": "Packages"
            }
          },
          "$path": "src/MainModule"
        }
      }
    }
  }

With the following hierarchy:

It produces:

RobloxStudioBeta_2SsyhBcm5P

Instead of my desired effect of:

RobloxStudioBeta_EFwRJEG4WE

How can I fix this?

Solved:

{
  "name": "HD Admin v2",
  "emitLegacyScripts": false,
  "tree": {
      "$className": "DataModel",

      "ServerScriptService": {
          "$className": "ServerScriptService",

          "MainModule": {
              "$className": "Folder",
              "Value": {
                  "$className": "Folder",
                  "Controllers": {
                      "$path": "src/MainModule/Value/Controllers"
                  },
                  "Modules": {
                      "$path": "src/MainModule/Value/Modules"
                  },
                  "Packages": {
                      "$path": "Packages"
                  },
                  "Services": {
                      "$path": "src/MainModule/Value/Services"
                  }
              }
          }
      }
  }
}