Open
Description
Version
3.0.0-rc.3
Reproduction link
https://github.com/lin-123/ts-vue
Steps to reproduce
this is vue.config.js
module.exports = {
devServer: {
// quiet: true,
overlay: {
warnings: true,
errors: true
}
},
chainWebpack: config => {
config.plugin('fork-ts-checker').tap(([options]) => {
return [{
async: false,
tslint: true,
vue: true
}]
})
},
configureWebpack: {
plugins: []
}
}
- create some tslint error
- run
npm run serve
- the web page just show the first error
What is expected?
the web page should every errors or warnings
What is actually happening?
the web page just show the first error