我有一个失败的node.js应用程序:
let x = [1]
let y = {...x};
有错误:
SyntaxError: /Users/.../index.js: Unexpected token (44:13)
42 | console.log(req.file, req.body);
43 | let x = [1]
> 44 | let y = {...x};
我试图用谷歌搜索这种行为,但是找不到解决方法。 es6的其他功能,例如let
和const
不会引起错误。
node -v
给出v10.8.0
答案 0 :(得分:0)
实际上,问题出在nodemon
中。我不得不改变
来自
.babelrc
{
"presets": ["es2015"]
}
到
{
"presets": [
"@babel/preset-env"
]
}