我正在尝试将 es6 转换为 es5,但它不起作用。
我的 Gruntfile.js
module.exports = function(grunt){
"use strict";
grunt.loadNpmTasks('grunt-babel');
grunt.initConfig({
"babel": {
options: {
sourceMap: true
},
dist: {
files: {
"dist/app.js": "app.js"
}
}
}
});
grunt.registerTask("default", ["babel"]);
}
当我运行 grunt 时,文件 dist/app.js 与 app.js 相同
有什么问题吗?