提问人:BennyLearnsCode 提问时间:11/11/2023 更新时间:11/11/2023 访问量:63
React 编译失败 (linter)
React Failed to Compile (Linter)
问:
我在尝试“npm run build”我的应用程序时遇到了一系列错误
我收到的第一个错误是:
Failed to compile.
Cannot read property 'value' of null
Occurred while linting /filepath
经过一番研究,我了解到我使用的是过时的 babel-eslint,并升级到了“@babel/eslint-parser”和“@babel/core”v7.23.3。在我eslintrc.json中,我补充说:
"parserOptions":{
"ecmaVersion":12,
"parser": "@babel/eslint-parser",
"requireConfigFile": false
},
"plugins":[
"react",
"jest",
"@babel"
]
这似乎解决了问题,但是现在我得到的错误是:
Failed to compile.
./src/index.js
Error: [BABEL] /opt/project/src/index.jsx: @babel/helper-compilation-targets: 'opera_mobile' is not a valid target
- Did you mean 'opera'?
谢谢
答: 暂无答案
评论