टाइपस्क्रिप्ट एस्लिंट - फ़ाइल एक्सटेंशन "ts" आयात / एक्सटेंशन को मिस करना


33

मेरे पास एक सरल नोड / एक्सप्रेस ऐप है जिसे टाइपस्क्रिप्ट के साथ बनाया गया है। और एसिल्ट मुझे त्रुटि देता है

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-typecript स्थापित किया है। और मुझे पता नहीं क्यों, मुझे वह त्रुटि मिली।


जवाबों:


69

निम्न कोड जोड़ें rules:

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

airbnbESLint कॉन्फ़िगरेशन समस्या का नेतृत्व करता है।


9
काम किया! धन्यवाद। (अन्य पाठकों: सुनिश्चित करें कि आप इसे "नियमों" के तहत "सेटिंग" नहीं ...)
वेनरिक्स
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.