乐趣区

Calls to ‘console.log’ are not allowed

使用 Vue CLI 3 的 vue create 创建 vue+ts 项目,使用默认配置,控制台报警告 Calls to ‘console.log’ are not allowed,解决:
在 tsling.json 中的 rules 下 添加:“no-console”: false。无需向在 tsling.config 中添加 ”extends”:”./tslint.config”。重启服务,搞定。
附 tsling.json 文件:
{
“defaultSeverity”: “warning”,
“extends”: [
“tslint:recommended”
],
“linterOptions”: {
“exclude”: [
“node_modules/**”
]
},
“rules”: {
“quotemark”: [true, “single”],
“indent”: [true, “spaces”, 2],
“interface-name”: false,
“ordered-imports”: false,
“object-literal-sort-keys”: false,
“no-consecutive-blank-lines”: false,
“max-line-length”: [false],
“no-console”: false
}
}

退出移动版