remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/apps/remix-ide-js/babel.config.js

26 lines
570 B

module.exports = {
extends: '../../babel.config.js',
plugins: [
[
"fast-async",
{
"runtimePattern": null,
"compiler": {
"es7": true,
"noRuntime": true,
"promises": true,
"wrapAwait": true
}
}
],
[
"babel-plugin-yo-yoify"
],
[
"@babel/plugin-transform-object-assign"
]
],
presets: [
"@babel/preset-env"
]
}