我已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")
但仍然没有运气。