0

我有一个使用带有 typescript 模板的 create-react-app 构建的 ReactJS 项目,它使用的是 typescript v3.7.5。

package.json
{
  ...
      "typescript": "3.7.5",
  ...
}

我按照本指南将 Jodit 编辑器添加到我的项目中。

但是当我运行项目时出现此错误。

/path/to/project/node_modules/jodit/index.d.ts
TypeScript error in /path/to/project/node_modules/jodit/index.d.ts(7,13):
'=' expected.  TS1005

     5 |  */
     6 |
  >  7 | import type { IComponent, Nullable } from './src/types';
       |             ^
     8 | import { Jodit as Super } from './src/jodit';
     9 |
    10 | export * from './src/types';

收到此错误后,我进行了一些调查,发现 jodit-react 是使用 typescript v4.1.3 构建的。

  "typescript": "^4.1.3",

也许我们会因为这个打字稿版本差异而得到错误。我对打字稿不太熟悉,我不确定它是否正确。

任何在这种情况下有经验的人,请让我知道我可以做些什么来在我的项目中使用这个包。

4

0 回答 0