CRA在控制台中未显示来自.ts和.tsx文件的掉毛错误/警告

时间:2019-05-29 18:47:41

标签: reactjs typescript eslint

使用没有--typescript的CRA引导项目,然后在https://facebook.github.io/create-react-app/docs/adding-typescript之后添加了TS。

eslintrc看起来像这样:

{
  "extends": ["plugin:@typescript-eslint/recommended", "react-app"],
  "parser": "@typescript-eslint/parser",
  "parserOptions": {
    "ecmaVersion": 6,
    "sourceType": "module",
    "ecmaFeatures": {
      "jsx": true
    }
  },
  "plugins": ["@typescript-eslint", "react"],
  "rules": {}
}

tsconfig是默认设置。我做了一个tslint --init,它添加了默认的.json配置。

.js文件中未使用的变量在控制台中显示为警告或错误,但.ts.tsx文件中的所有内容均被忽略。有没有办法在控制台中显示这些内容?

如果没有,最好的方法是在某处显示掉毛错误,而不必每次都键入eslint

0 个答案:

没有答案