Skip to content
Advertisement

node_modules/@types/react/index”‘ has no default export

Trying to convert a React app over into Typescript and running into strange errors.

node_modules/@types/react/index”‘ has no default export.

node_modules/@types/react-dom/index”‘ has no default export.

I have my tsconfig and webpack setup for typescript. After changing this one component’s extension from .js to .tsx I’m getting errors for React?

enter image description here

Thoughts?

tsconfig.json

JavaScript

webpack

JavaScript

Advertisement

Answer

You have to use import * as React from "react"; instead of import React from 'react'.

That happens because babel (the one that you were using before) assumes modules.export as default export while typescript (the one that you are using now) does not.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement