因此,我正在使用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"
]
}