报错原因是因为 ESLint 的严格模式,限制了使用 ’ ,甚至多一个空格都会报错。
我们只需要在 settings.json 这个用户配置文件中添加配置项
"tslint.autoFixOnSave": true, "prettier.singleQuote": true
配置完成即可。