赞
踩
You need to upgrade your eslint version, in the error you can
see a bad prefix eslint-plugin- due to some const in
eslint/lib/config/plugins.js which was removed in later versions.
首先了解以下三个依赖:
eslint
: ESLint的核心代码@typescript-eslint/parser
:ESLint的解析器,用于解析typescript,从而检查和规范Typescript代码@typescript-eslint/eslint-plugin
:这是一个ESLint插件,包含了各类定义好的检测Typescript代码的规范"@typescript-eslint/eslint-plugin": "1.2.0"
在tsconfig.json中加入:
"jsx": "react",
这个原因是我在ts中引入了js的内容,就会导致报错。
在tsconfig.json中加入:
"allowJs": true,
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。