-
Notifications
You must be signed in to change notification settings - Fork 1
/
bsconfig.json
43 lines (43 loc) · 946 Bytes
/
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
/* This is the BuckleScript configuration file. Note that this is a comment;
BuckleScript comes with a JSON parser that supports comments and trailing
comma. If this screws with your editor highlighting, please tell us by filing
an issue! */
{
"name": "gayer",
"reason": {
"react-jsx": 2
},
"sources": [
{
"dir" : "src",
"subdirs" : true
},
{
"dir": "__tests__",
"type": "dev"
}
],
"package-specs": [{
"module": "es6",
"in-source": true
},
{
"module": "commonjs"
}],
"suffix": ".bs.js",
"namespace": true,
"warnings": {
"error": "+8"
},
"bs-dependencies": [
"bs-webapi",
"reason-react",
"rationale",
"@glennsl/bs-json",
"bs-material-ui-icons",
"@jsiebern/bs-material-ui"
],
"bs-dev-dependencies": ["@glennsl/bs-jest"],
"ppx-flags": ["./node_modules/@jsiebern/bs-material-ui/bin/ppx_withStyles-darwin-x64"],
"refmt": 3
}