【React】同样ts+react 'hot' does not exist on type 'NodeModule'

同样ts+react webpack配置了HotModuleReplacementPlugin()\,
为什么我module.hot 报错:TS2339: Property 'hot' does not exist on type 'NodeModule'.

webpack.config.js

    new webpack.HotModuleReplacementPlugin(),

demo.ts

    if(module.hot) {

{

// ...

}

TS2339: Property 'hot' does not exist on type 'NodeModule'.

【React】同样ts+react 'hot' does not exist on type 'NodeModule'

已解决

解决办法:

1. if (module as any).hot {}

或者

2. yarn add @types/webpack.env -D

回答

正常的,可以通过配置types文件或者直接写条件忽略

不看详细的代码,看不出哪里的问题,最简单的办法是用webpack-dev-server替代。

还有看你的错误提示error那部分,是你的源文件中有代码错误。你这张图截的不完整,右边应该还有提示信息。

以上是 【React】同样ts+react 'hot' does not exist on type 'NodeModule' 的全部内容, 来源链接: utcz.com/a/76282.html

回到顶部