0
我已經安裝依賴於一切,我知道(文件夾在我的版本)警告錯誤。這裏是我的webpack.config.js文件:JS-提示未通過鍵入 <code>npm install jshint jshint-loader --save-dev</code>讓步的WebPack
`module.exports = {
entry: "./app.js",
output: {
filename: "bundle.js"
},
module: {
preLoaders : [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'jshint-loader'
}
]
}
}`
我有開發環境與手錶工作的webpack。但說我寫consol.logg('wut')
並保存在我的app.js ......沒有警告或錯誤,說的WebPack我包是有效的。