forked from mihe/tsu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TSU.uplugin
43 lines (43 loc) · 984 Bytes
/
TSU.uplugin
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
{
"FileVersion": 3,
"Version": 6,
"VersionName": "0.5.1",
"FriendlyName": "TypeScript for Unreal",
"Description": "Adds TypeScript support to Blueprint",
"Category": "Scripting",
"CreatedBy": "Mikael Hermansson",
"CreatedByURL": "https://github.com/mihe",
"DocsURL": "https://github.com/mihe/tsu",
"SupportURL": "https://github.com/mihe/tsu/issues",
"EnabledByDefault": false,
"CanContainContent": false,
"IsBetaVersion": false,
"Installed": false,
"CanBeUsedWithUnrealHeaderTool": false,
"Modules": [
{
"Name": "TsuUtilities",
"Type": "Runtime",
"LoadingPhase": "PostConfigInit",
"WhitelistPlatforms": [
"Win64"
]
},
{
"Name": "TsuRuntime",
"Type": "Runtime",
"LoadingPhase": "PostConfigInit",
"WhitelistPlatforms": [
"Win64"
]
},
{
"Name" : "TsuEditor",
"Type" : "Editor",
"LoadingPhase" : "PreEarlyLoadingScreen",
"WhitelistPlatforms": [
"Win64"
]
}
]
}