作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 node/typescript 为 Discord 开发一个机器人。当我在我的源代码上运行 typescript 编译器时,我收到了这个错误:
node_modules/@types/readable-stream/index.d.ts(13,15): error TS2417: Class static side 'typeof _Readable' incorrectly extends base class static side 'typeof Readable'.
The types of 'Stream.Readable.Writable' are incompatible between these types.
Type 'typeof _Readable.Writable' is not assignable to type 'typeof import("stream").Writable'.
Types of parameters 'options' and 'opts' are incompatible.
Type 'import("stream").WritableOptions' is not assignable to type '_Readable.WritableOptions'.
Type 'WritableOptions' is not assignable to type 'WritableStateOptions'.
Types of property 'defaultEncoding' are incompatible.
Type 'string' is not assignable to type 'BufferEncoding'.
npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! Shattered-Star@1.0.0 tsc: `tsc`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the Shattered-Star@1.0.0 tsc script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
@types/node
因为这似乎是它来自的模块,但这并没有引起任何变化。据我所知,我的源代码都没有使用
readable-streams
子模块。事实上,删除它解决了我的问题——我只想知道到底发生了什么。这是我的
tsconfig.json
万一我在那里遗漏了什么:
{
"compilerOptions": {
"target": "es6",
"outDir": "built/",
"moduleResolution": "Node"
},
"include": [
"./bot/**/*"
]
}
最佳答案
我最近遇到这个问题。
这似乎是 @types/readable-stream
的最新版本之间的打字不兼容。 (2.3.6) 和您的 node
版本.
您可以在 yarn.lock/package-lock.json 中检查此版本中是否存在此包
看来@types/readable-stream@2.3.6
是 node >= 14
-兼容而@types/readable-stream@2.3.5
是 node < 14
-兼容的
我如何在我的环境中修复它 node < 14
:
yarn add -D --exact @types/readable-stream@2.3.5
npm i -D -E @types/readable-stream@2.3.5
@types/readable-stream
软件包版本并显式设置为
2.3.5
通过添加
"@types/readable-stream": "2.3.5"
修复版本在你的 package.json devDependencies
node
版本是
>= 14
,您可能必须对
2.3.6
执行相同的操作
@types/readable-stream
的版本
关于node.js - 类静态端 'typeof _Readable' 错误地扩展了基类静态端 'typeof Readable',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61947491/
我正在使用 node/typescript 为 Discord 开发一个机器人。当我在我的源代码上运行 typescript 编译器时,我收到了这个错误: node_modules/@types/re
我是一名优秀的程序员,十分优秀!