找不到模块subscription-transport-ws或其对应的类型声明

时间:2020-08-29 02:54:41

标签: javascript reactjs typescript urql

我正在使用打字稿的React项目中,并尝试使用yarn安装 subscriptions-transport-ws ,我安装正确,但是我的应用程序崩溃了,因为它显示的错误类似于标题中的错误,通常,我安装了库的类型版本,但是在这种情况下,似乎确实存在一个subscriptions-transport-ws版本,我在做什么错呢?我刚刚安装了软件包,已经安装了其他库,它们运行正常

这是我的tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "react"
  },
  "include": [
    "src"
  ]
}

0 个答案:

没有答案