- Upgrade webpack setup - Upgrade node deps and node requirement itself - Content reloading - No-reload when plugins update in the structure
21 lines
334 B
Plaintext
21 lines
334 B
Plaintext
{
|
|
"presets": [
|
|
["env", {
|
|
"modules": false
|
|
}]
|
|
],
|
|
"plugins": ["transform-runtime"],
|
|
"env": {
|
|
"production": {
|
|
"plugins": [
|
|
"lodash"
|
|
]
|
|
},
|
|
"test": {
|
|
"plugins": [
|
|
"rewire"
|
|
]
|
|
}
|
|
}
|
|
}
|