HJo*_*n35 5 javascript typescript reactjs visual-studio-code create-react-app
我jsconfig.json在我的 vscode 项目中添加了一个,由于某种原因,我收到一个打字稿错误,指出“dotenv/types未找到”。
我一生都无法弄清楚为什么会出现这个错误。我什至尝试将 dotenv 添加到我的中package.json,但它没有解决我的问题。
这是使用 create-react-app 创建的标准项目,我添加了jsconfig.json来允许绝对导入
{
"compilerOptions": {
"baseUrl": "src"
},
"include": ["src"]
}
Run Code Online (Sandbox Code Playgroud)
例外:
找不到文件“/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"
}
}
Run Code Online (Sandbox Code Playgroud)
.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/"]
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
小智 19
如果您使用的是 Visual Studio Code,只需在设置中禁用“ Typescript 验证”即可。
错误应该消失。
Lan*_*rad 11
@dioslibre答案工作得很好,但我不想禁用 Typescript 验证。@Anees Hameed 在回答类似问题时解释的一种替代方案是将以下代码片段添加到 settings.json 中:
"json.schemas": [
{
"$schema": "https://json.schemastore.org/jsconfig"
}
]
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
9328 次 |
| 最近记录: |