-
Notifications
You must be signed in to change notification settings - Fork 4
/
bsconfig.json
67 lines (67 loc) · 1.3 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
{
"name": "verified-react",
"sources": [
{
"dir": "examples/simple",
"subdirs": true,
"generators": [{
"name": "imandra-extract-re",
"edge": ["Counter.ml", ":", "Counter.ire"]
}]
},
{
"dir": "examples/tictactoe",
"subdirs": true,
"generators": [{
"name": "imandra-extract-re",
"edge": ["TicTacToe_Logic.ml", ":", "TicTacToe_Logic.ire"]
}]
},
{
"dir": "examples/todomvc",
"subdirs": true,
"generators": [{
"name": "imandra-extract-re",
"edge": ["TodoMvc_Model.ml", ":", "TodoMvc_Model.ire"]
}]
},
{
"dir": "scripts"
},
{
"dir": "src"
}
],
"package-specs": {
"module": "commonjs",
"in-source": true
},
"suffix": ".bs.js",
"bs-dependencies": [
"reason-react",
"bs-imandra-client",
"@glennsl/bs-jest",
"@glennsl/bs-json",
"imandra-prelude",
"bs-css",
"bs-decoders",
"bs-jest-expect-imandra"
],
"reason": {
"react-jsx": 2
},
"warnings": {
"error" : "+101"
},
"refmt": 3,
"generators": [
{
"name": "imandra-extract-re",
"command": "imandra-extract -reason -o $out $in"
},
{
"name": "imandra-extract-ml",
"command": "imandra-extract -o $out $in"
}
]
}