mirror of
https://github.com/aelve/guide.git
synced 2024-12-24 13:26:08 +03:00
b248b75a49
* Vue updated, got rid of vue fork, babel updated * update vue-class-component * Vue-class-component updated * Vue-class-component update and usage
22 lines
438 B
Plaintext
22 lines
438 B
Plaintext
{
|
|
"presets": [
|
|
["@babel/env", {
|
|
"targets": {
|
|
"browsers": ["last 3 versions", "> 2%", "ie >= 10", "Firefox >= 30", "Chrome >= 30"]
|
|
},
|
|
"modules": false,
|
|
"loose": true,
|
|
"useBuiltIns": "entry"
|
|
}]
|
|
],
|
|
"plugins": [
|
|
"@babel/plugin-transform-runtime",
|
|
"@babel/plugin-syntax-dynamic-import"
|
|
],
|
|
"env": {
|
|
"test": {
|
|
"plugins": ["transform-es2015-modules-commonjs"]
|
|
}
|
|
}
|
|
}
|