最佳答案
我刚开始使用带打字脚本的 create-response-app
create-react-app my-app --scripts-version=react-scripts-ts
而默认的 tslint.json 配置不允许 console.log ()。
我(现在)如何启用 console.log?
这个的文件在 https://palantir.github.io/tslint/rules/no-console/,但是他们没有说把这条线放在哪里:
"no-console": [true, "log", "error"]
我搜索并找到了这个 Json 配置文件语法,所以我试了这个:
"rules": {
"no-console": [true, "warning"]
}
试图获取只是警告的日志消息。 但是没成功。
我已经注释掉了一些 console. log ()代码行,但希望将来能够这样做。