我收到以下错误:
SyntaxError: arguments is a reserved word in strict mode
尝试时:
console.log(arguments);
如何关闭webpack linting?我的配置如下:
var plugins = [
new webpack.LoaderOptionsPlugin({
debug: true
}),
plugins.push(new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
}))
plugins.push(new webpack.optimize.UglifyJsPlugin())
];
webpack({
entry: entry.path,
output: {
filename: output['file name'],
path: output.path
},
resolve: {
modules: module.paths,
extensions: ['.js', '.jsx']
},
module: {
rules: [{
test: /.jsx?$/,
exclude: /node_modules/,
use: [{
loader: 'babel-loader',
options: {
babelrc: false,
presets: ['es2015', 'react']
}
}]
}]
},
resolveLoader: {
modules: loader.paths
},
plugins: plugins,
stats: {
colors: true,
errorDetails: true,
modules: true,
modulesSort: "field",
reasons: true,
}
}, function(err, stats) {
if (err) {
require('log')(err);
return;
}
const info = stats.toJson();
if (stats.hasErrors()) {
require('log')(info.errors);
}
else {
require('log')(options.launcher + " compiled")
}
if (stats.hasWarnings()) {
require('log')(info.warnings)
}
});
.... 单词,以便我可以发布这个问题与stackoverflow给我错误,我的问题主要是代码.... ...
答案 0 :(得分:4)
这是一个 SyntaxError ,这意味着你有一个无法编译的代码。当你忘记输入大括号的一半时,你会得到同样的错误。
这不是皮带问题(对于代码样式)。
您很可能错误地使用保留字arguments
作为变量名称。将其重命名为其他内容。
运行代码如下所示,您可以看到没有webpack的情况下仍会出现错误。
"use strict";
var arguments = 1;
console.log(arguments)