Итак, я использую babel-cli, и кажется, что мои комментарии перемещаются в разные строки.Можно ли как-то сказать, чтобы babel оставил комментарии в покое?
Например:
console.log('woof');
// <debug>
x = () => {
console.log('woof');
}
// </debug>
x();
Транспилируется в:
console.log('woof'); // <debug>
x = function x() {
console.log('woof');
}; // </debug>
x();
Когда я хочу, чтобы это было:
console.log('woof');
// <debug>
x = function x() {
console.log('woof');
};
// </debug>
x();
Это мой конфиг:
{
"presets": [
[
"@babel/preset-env", {
"targets": {
"ie": "11"
}
}
]
],
"plugins": [
"@babel/plugin-transform-object-assign"
]
}