-
Notifications
You must be signed in to change notification settings - Fork 39
/
bsconfig.json
93 lines (93 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bamboo",
"version": "0.0.02",
"bsc-flags": "-w -27 -g",
"warnings": {
"number": "-40+6+7-26-27+32..39-28-44+45",
"error": "+8"
},
"bs-dependencies": [
"bs-bn.js"
],
"ocamlfind-dependencies": [
"batteries",
"cryptokit",
"hex",
"ppx_deriving",
"ppx_deriving_rpc",
"rpclib.json"
],
"generators": [
{
"name": "ocamllex",
"command": "ocamllex $in"
},
{
"name": "menhir",
"command": "menhir $in"
}
],
"sources": {
"dir": "src",
"subdirs": [
{"dir": "ast"},
{"dir": "basics"},
{"dir": "codegen"},
{"dir": "cross-platform"},
{"backend": "native", "dir": "exec"},
{"backend": "js", "dir": "exec-js"},
{"dir": "lib"},
{"dir": "parse",
"generators": [
{
"name": "ocamllex",
"edge": ["lexer.ml", ":", "lexer.mll"]
},
{
"name": "menhir",
"edge": ["parser.ml", "parser.mli", ":", "parser.mly"]
}
]
}
]
},
"entries": [
{
"backend": "native",
"main-module": "Bamboo"
},
{
"backend": "native",
"main-module": "Codegen_test"
},
{
"backend": "native",
"main-module": "Codegen_test2"
},
{
"backend": "native",
"main-module": "Lib_test"
},
{
"backend": "native",
"main-module": "Hex_test"
},
{
"backend": "native",
"main-module": "Parser_test"
},
{
"backend": "native",
"main-module": "Ast_test"
},
{
"backend": "native",
"main-module": "EndToEnd"
},
{
"backend": "js",
"main-module": "BambooJs"
}
],
"refmt": 3
}