-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathbsconfig.json
51 lines (51 loc) · 1.18 KB
/
bsconfig.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
{
"name": "reprocessing",
"sources": [{
"dir": "src",
"public": ["Reprocessing", "Reprocessing_Env", "Reprocessing_Shaders", "Reprocessing_Types",
"Reprocessing_Common", "Reprocessing_Events", "Reprocessing_Utils",
"Reprocessing_Constants", "Reprocessing_Font", "Reprocessing_Hotreload",
"Reprocessing_Draw", "Reprocessing_Internal", "Reprocessing_Matrix"
],
"subdirs": [{
"dir": "bytecode",
"backend": ["bytecode"]
}]
}, {
"dir": "examples",
"type": "dev"
}],
"entries": [{
"backend": "bytecode",
"main-module": "IndexHot"
}, {
"backend": "native",
"main-module": "Index"
}, {
"backend": "bytecode",
"main-module": "Index"
}, {
"backend": "js",
"main-module": "Index"
}, {
"backend": "native",
"main-module": "Noise"
}, {
"backend": "bytecode",
"main-module": "Noise"
}, {
"backend": "js",
"main-module": "Noise"
}, {
"backend": "native",
"main-module": "Redsquare"
}, {
"backend": "bytecode",
"main-module": "Redsquare"
}, {
"backend": "js",
"main-module": "Redsquare"
}],
"bs-dependencies": ["@bsansouci/reasongl-web"],
"refmt": 3
}