繁体   English   中英

在 JSConfig.json 文件中看到未知的 typescript 错误

[英]Seeing unknown typescript error in JSConfig.json file

我在我的项目中添加了一个 jsconfig.json,由于某种原因,我收到了一个 typescript 错误,指出dotenv/types 我一生都无法弄清楚为什么会出现此错误。 我什至尝试将 dotenv 添加到我的 package.json 并没有解决我的问题。

这是一个使用 create-react-app 创建的标准项目,我添加了 jsconfig.json 以允许绝对导入

// jsconfig.json    
{
  "compilerOptions": {
    "baseUrl": "src"
  },
  "include": ["src"]
}

例外:

找不到文件“/Users/path/to/file/node_modules/dotenv/types”。

其他可能有用的潜在文件:

package.json

{
  "name": "quantous-spa",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@testing-library/jest-dom": "^4.2.4",
    "@testing-library/react": "^9.3.2",
    "@testing-library/user-event": "^7.1.2",
    "axios": "^0.20.0",
    "babel-plugin-macros": "^2.8.0",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-feather": "^2.0.8",
    "react-loading-skeleton": "^2.1.1",
    "react-router-dom": "^5.2.0",
    "react-scripts": "3.4.3",
    "styled-components": "^5.1.1",
    "typeface-muli": "^1.1.3"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "devDependencies": {
    "eslint-config-google": "^0.14.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-prettier": "^3.1.4",
    "eslint-plugin-react": "^7.20.6",
    "prettier": "^2.0.5"
  },
  "resolutions": {
    "styled-components": "^5"
  }
}

.eslintrc

{
  "env": {
    "browser": true,
    "es2020": true
  },
  "extends": [
    "plugin:react/recommended",
    "google",
    "plugin:prettier/recommended"
  ],
  "parserOptions": {
    "ecmaFeatures": {
      "jsx": true,
      "js": true
    },
    "ecmaVersion": 11,
    "sourceType": "module"
  },
  "plugins": ["react"],
  "rules": {
    "require-jsdoc": "off"
  },
  "settings": {
    "import/resolver": {
      "node": {
        "paths": ["node_modules", "src/"]
      }
    }
  }
}

vscode 错误截图

如果您使用的是 Visual Studio Code,只需在设置中禁用 Typescript 验证,错误应该 go 消失。

@dioslibre 答案完美,但我不想禁用 Typescript 验证。 @Anees Hameed 在他们对类似问题的回答中解释的一种替代方法是将以下代码段添加到 settings.json 中:

 "json.schemas": [
      { 
        "$schema": "https://json.schemastore.org/jsconfig" 
      }
    ]

该错误告诉您它找不到 dotenv 类型。 运行npm install dotenv来安装类型。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM