所以我正在使用 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"
]
}