猿问

对象的扩展运算 编译报错

ES2017新增对象的扩展运算符特性,但自己编译错误,下面是主要文件。

// main.js


let {a, ...x} = {a: 1, b: 2, c: 3}

console.log(a, x)

// webpack.config.js


{

    test: /\.js$/,

    exclude: /node_modules/,

    use: [{

      loader: "babel-loader",

      options: {

        presets: ["es2015", "es2017"],

        plugins: [

          "transform-runtime"

        ]

      }

    }]

},

SyntaxError: Unexpected token

let {a, ...x} = {a: 1, b: 2, c: 3}

        ^

请教一下这样配置哪里有问题?谢谢

小唯快跑啊
浏览 559回答 1
1回答

莫回无

解构对象需要用到 stage-3 的 preset
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答