如何解决@typescript-eslint/no-var-requires 错误。添加@axe-core/react 时出错

IT技术 reactjs typescript accessibility web-accessibility
2021-05-08 00:27:37

我已axe-core/react通过以下方式添加到我的项目中:

npm install --save-dev @axe-core/react

现在我在我的代码中添加了以下代码index.tsx来启动和运行:

if (process.env.NODE_ENV !== 'production') {
    const axe = require('@axe-core/react');
    axe(React, ReactDOM, 1000);
}

现在,如果我导航到 localhost,该页面将显示compile error以下消息:

src\index.tsx
  Line 14:17:  Require statement not part of import statement  @typescript-eslint/no-var-requires

行发生此错误:

const axe = require('@axe-core/react');

否则我如何导入它?

PS:我尝试做类似的事情:

import foo = require("foo")

但仍然没有运气。

1个回答

更换线路

const axe = require('@axe-core/react');

import axe from '@axe-core/react';

解决了我的问题。