HackMD/.babelrc
Claudius 806ebe6e1a drop node 6 support
We will no longer test on node6 and instead focus on 8+. This won't
break node6 immediately, but we will no longer go out of our way
supporting a version that does not receive security updates.

Signed-off-by: Claudius <opensource@amenthes.de>
2019-05-13 19:37:21 +02:00

14 lines
159 B
Plaintext

{
"presets": [
["env", {
"targets": {
"node": "8",
"uglify": true
}
}]
],
"plugins": [
"transform-runtime"
]
}