Typescript cannot find redux

前端 未结 4 1784
野性不改
野性不改 2020-12-25 12:06

I am getting the following error:

node_modules/@types/react-redux/index.d.ts(8,24): error TS2307: Cannot find module \'redux\'.

despite hav

4条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-25 12:13

    I reverted to @types/redux@3.6.31 and that resolved the problem. This version includes the index.d.ts file for redux. There might be a problem with the TypeScript compiler not looking for the index.d.ts file in the normal node_modules/redux directory, but only under node_module/@types.

提交回复
热议问题