34 lines
641 B
Plaintext
34 lines
641 B
Plaintext
|
{
|
||
|
"env": {
|
||
|
"es6": {
|
||
|
"presets": [
|
||
|
["babel-preset-env", {
|
||
|
"targets": {
|
||
|
"node": true,
|
||
|
"uglify": false
|
||
|
},
|
||
|
"spec": true,
|
||
|
"debug": false,
|
||
|
"modules": false
|
||
|
}]
|
||
|
]
|
||
|
},
|
||
|
"node": {
|
||
|
"presets": [
|
||
|
["babel-preset-env", {
|
||
|
"targets": {
|
||
|
"node": true,
|
||
|
"uglify": false
|
||
|
},
|
||
|
"spec": true,
|
||
|
"debug": false,
|
||
|
"modules": "commonjs"
|
||
|
}]
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"plugins": [
|
||
|
"babel-plugin-transform-class-properties",
|
||
|
"babel-plugin-dynamic-import-node"
|
||
|
]
|
||
|
}
|