Attempt adding binaryen - doesn't actually run though

This commit is contained in:
2018-09-09 00:06:48 -04:00
parent e7edfc1e8c
commit d6c662ac80
11 changed files with 7987 additions and 0 deletions

42
binaryen/.compilerc Normal file
View File

@ -0,0 +1,42 @@
{
"env": {
"development": {
"application/javascript": {
"presets": [
[
"env",
{
"targets": {
"electron": 2
}
}
],
"react"
],
"plugins": [
"transform-async-to-generator"
],
"sourceMaps": "inline"
}
},
"production": {
"application/javascript": {
"presets": [
[
"env",
{
"targets": {
"electron": 2
}
}
],
"react"
],
"plugins": [
"transform-async-to-generator"
],
"sourceMaps": "none"
}
}
}
}