-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.babelrc
85 lines (83 loc) Β· 3 KB
/
.babelrc
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
{
"env" : {
"minify" : {
"presets": [
["babili",{
"keepClassName" : false,
"keepFnName" : false,
"mangle":{
"blacklist" : { "foo": true, "bar": true},
"topLevel" : true
},
"unsafe":{
"typeConstructors" : true,
"flipComparisons" : true,
"guards" : true
},
"properties":{
"memberExpressions" : true,
"propertyLiterals" : true
},
"replace": false,
"builtins": false
}]
],
"plugins": [
["minify-replace",{
"replacements": [
{
"identifierName": "MIC_THREESHOLD",
"replacement": {
"type" : "numericLiteral",
"value" : 0.1
}
},
{
"identifierName": "SCRIPTNODE_BUFFER_SIZE",
"replacement": {
"type" : "numericLiteral",
"value" : 4096
}
},
{
"identifierName": "N_CARD",
"replacement": {
"type" : "numericLiteral",
"value" : 16
}
},
{
"identifierName": "N_CARD_LN",
"replacement": {
"type" : "numericLiteral",
"value" : 5
}
},
{
"identifierName": "PHASE_DURATION",
"replacement": {
"type" : "numericLiteral",
"value" : 15
}
}
]
}],
["replace-identifiers", {
"audioContext" : "z",
"scriptNode" : "y",
"trainingMode" : "w",
"phase" : "u",
"_phase" : "r",
"label" : "$",
"startDate" : "_",
"inputData" : "v",
"max_gain" : "o",
"cooldown" : "s",
}]
]
},
"development" : {
"presets": ["es2015", "stage-1", "react"]
}
}
}