Typescript Eslint-누락 된 파일 확장자“ts”가져 오기 / 확장자


33

Typescript로 만든 간단한 Node / Express 앱이 있습니다. 그리고 eslint는 오류를 줘

Missing file extension "ts" for "./lib/env" import/extensions

여기 내 .eslintrc 파일이 있습니다

    {
  "extends": [
    "airbnb",
    "plugin:@typescript-eslint/recommended",
    "prettier",
    "prettier/react",
    "plugin:import/errors",
    "plugin:import/warnings",
    "plugin:import/typescript"
  ],
  "parser": "@typescript-eslint/parser",
  "plugins": ["@typescript-eslint", "prettier", "import"],
  "settings": {
    "import/extensions": [".js", ".jsx", ".ts", ".tsx"],
    "import/parsers": {
      "@typescript-eslint/parser": [".ts", ".tsx"]
    },
    "import/resolver": {
      "typescript": {
        "directory": "./tsconfig.json"
      },
      "node": {
        "extensions": [".js", ".jsx", ".ts", ".tsx"]
      }
    }
  },
  "rules": {
    "@typescript-eslint/indent": [2, 2],
    "no-console": "off",
    "import/no-unresolved": [2, { "commonjs": true, "amd": true }],
    "import/named": 2,
    "import/namespace": 2,
    "import/default": 2,
    "import/export": 2
  }
}

eslint-plugin-impor & eslint-import-resolver-typescript를 설치했습니다. 그리고 나는 그 이유를 알 수 없습니다.


답변:


69

다음 코드를 추가하십시오 rules .

"rules": {
   "import/extensions": [
      "error",
      "ignorePackages",
      {
        "js": "never",
        "jsx": "never",
        "ts": "never",
        "tsx": "never"
      }
   ]
}

airbnbESLint 구성 이 문제를 일으 킵니다 .


9
일했다! 감사. (다른 독자들 : "설정"이 아닌 "규칙"에 두어야합니다 ...)
Venryx
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.