我正在使用打字稿的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"
]
}