mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
Matthias Kretschmann
e87b6fc421
* switch to Babel 7 * consistent npm start command * mention production build * correct license and author in package.json * important emoji change * simplify travis.yml
14 lines
263 B
Plaintext
14 lines
263 B
Plaintext
{
|
|
"presets": [
|
|
["@babel/preset-env", { "useBuiltIns": "entry" }]
|
|
],
|
|
"plugins": [
|
|
["@babel/plugin-transform-runtime",
|
|
{
|
|
"regenerator": true
|
|
}
|
|
],
|
|
["@babel/plugin-proposal-object-rest-spread", { "useBuiltIns": true }]
|
|
]
|
|
}
|