Typescript cannot find redux

前端 未结 4 1793
野性不改
野性不改 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:19

    I experienced the same problem on a react-native project. This fix worked for me:

    You have to add "moduleResolution": "node" to the compiler options in order to include type definitions linked in package.json files.

    Documentation here https://www.typescriptlang.org/docs/handbook/module-resolution.html

提交回复
热议问题