17
votes

I'm new in react with typescript. I installed react, react-dom; then installed @types/react, @types/react-dom, everything fine, everything works, except that I get error ERROR in [at-loader] ./node_modules/@types/react/index.d.ts:55:22 Cannot find module 'csstype'. So I looked to the file in this path, and notice that vscode underlines line - import * as CSS from 'csstype'; with red line and marks as cannot find module. I tried yarn add csstype, yarn add csstype -D, did not help. Any idea how fix error? [App works with error].

1

1 Answers

43
votes

Using compilerOptions.moduleResolution: "node" should fix it