-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake.json
More file actions
60 lines (60 loc) · 1.07 KB
/
make.json
File metadata and controls
60 lines (60 loc) · 1.07 KB
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
{
"$schema": "https://raw.githubusercontent.com/zheka2304/innercore-mod-toolchain/develop/toolchain/schemas/make.schema.json",
"info": {
"name": "Modding Tools",
"version": "0.4-snapshot3",
"author": "Nernar"
},
"api": "AdaptedScript",
"denyTypeScript": true,
"sources": [
{
"type": "launcher",
"language": "javascript",
"source": "script/launcher.js"
},
{
"type": "custom",
"language": "javascript",
"api": "Instant",
"source": "script/instant.js"
},
{
"type": "main",
"language": "typescript",
"source": "script/main"
},
{
"source": "library/*",
"type": "library",
"language": "javascript"
},
{
"type": "custom",
"language": "javascript",
"source": "script/adaptedscript"
},
{
"type": "custom",
"language": "javascript",
"source": "script/coreengine"
},
{
"type": "custom",
"language": "javascript",
"source": "script/runtime"
}
],
"compile": [
{
"source": "java/*",
"type": "java"
}
],
"target": {
"java": "../java"
},
"adb": {
"doNothingIfDisconnected": true
}
}