-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.project.json
52 lines (49 loc) · 1.46 KB
/
default.project.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
{
"name": "Boilerplate",
"servePlaceIds": [12345],
"globIgnorePaths": [
"src/**/*.spec.lua",
"Packages/**/*.spec.lua"
],
"tree": {
"$className": "DataModel",
"$ignoreUnknownInstances": true,
"ReplicatedStorage": {
"$ignoreUnknownInstances": true,
"$className": "ReplicatedStorage",
"$path": "src/ReplicatedStorage",
"Shared": {
"$className": "Folder",
"$path": "src/Shared"
},
"Packages": {
"$className": "Folder",
"$path": "Packages"
}
},
"ServerScriptService": {
"$ignoreUnknownInstances": true,
"$className": "ServerScriptService",
"$path": "src/ServerRunner"
},
"ServerStorage": {
"$ignoreUnknownInstances": true,
"$className": "ServerStorage",
"$path": "src/Server"
},
"StarterPlayer": {
"$ignoreUnknownInstances": true,
"$className": "StarterPlayer",
"StarterPlayerScripts": {
"$ignoreUnknownInstances": true,
"$className": "StarterPlayerScripts",
"$path": "src/Client"
}
},
"ReplicatedFirst": {
"$ignoreUnknownInstances": true,
"$className": "ReplicatedFirst",
"$path": "src/ReplicatedFirst"
}
}
}