mirror of
https://github.com/tenrok/vue2-datepicker.git
synced 2026-06-09 18:32:26 +03:00
28 lines
499 B
Plaintext
28 lines
499 B
Plaintext
// Parceljs cann't compile babel.config.js
|
|
{
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"modules": false
|
|
}
|
|
]
|
|
],
|
|
"plugins": ["transform-vue-jsx", "@babel/plugin-transform-object-assign"],
|
|
"env": {
|
|
"test": {
|
|
"presets": [
|
|
[
|
|
"@babel/preset-env",
|
|
{
|
|
"targets": {
|
|
"node": "current"
|
|
}
|
|
}
|
|
]
|
|
],
|
|
"plugins": ["transform-vue-jsx"]
|
|
}
|
|
}
|
|
}
|