-
Notifications
You must be signed in to change notification settings - Fork 12
/
rojo.json
61 lines (58 loc) · 1.64 KB
/
rojo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "aerogameframework",
"servePort": 8000,
"partitions": {
"ClientControllers": {
"path": "src/Client/Controllers",
"target": "StarterPlayer.StarterPlayerScripts.Aero.Controllers"
},
"ClientModules": {
"path": "src/Client/Modules",
"target": "StarterPlayer.StarterPlayerScripts.Aero.Modules"
},
"ServerModules": {
"path": "src/Server/Modules",
"target": "ServerStorage.Aero.Modules"
},
"ServerServices": {
"path": "src/Server/Services",
"target": "ServerStorage.Aero.Services"
},
"Shared": {
"path": "src/Shared",
"target": "ReplicatedStorage.Aero.Shared",
"ignoreUnknownInstances": true,
"ignoreInstances": [
"PackageLink"
]
},
"_ReplicatedFirst": {
"path": "src/_framework/rep_first",
"target": "ReplicatedFirst.Aero"
},
"_ReplicatedStorageInternal": {
"path": "src/_framework/rep_internal",
"target": "ReplicatedStorage.Aero.Internal"
},
"_ServerScriptService": {
"path": "src/_framework/server_internal",
"target": "ServerScriptService.Aero.Internal"
},
"_AeroClient": {
"path": "src/_framework/client_internal",
"target": "StarterPlayer.StarterPlayerScripts.Aero.Internal"
},
"_JumpTweaker": {
"path": "src/ReplicatedStorage/JumpTweakerAPI",
"target": "ReplicatedStorage.JumpTweakerAPI"
},
"_LegacyUtil": {
"path": "src/ReplicatedStorage/LegacyUtil",
"target": "ReplicatedStorage.LegacyUtil"
},
"_ExternalServer": {
"path": "src/ExternalServer",
"target": "ServerScriptService.External"
}
}
}