Skip to content
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.

add undefined import tip to guide #365

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

bagilevi
Copy link

Add troubleshooting tip for importing the default export in TypeScript.

Easy mistake to make when migrating from JavaScript.

See: #364

Add troubleshooting tip for importing the default export in TypeScript.

Easy mistake to make when migrating from JavaScript.
@bagilevi bagilevi force-pushed the add-troubleshooting-import-undefined branch from 66d5fb1 to dc4e448 Compare July 13, 2018 11:09
@DorianGrey
Copy link
Collaborator

Sorry for the delay ... had a lot of things to do recently.

This description lacks some details and potential alternative suggestions.
A bit of background (refering to the example in the ticket):

import _ from 'lodash';

This only works in case the package lodash has a default export. But it does not have one (at least in v4) - every function is exported separately (lodash-es provides some default exports, but one for each function in separation).
So in general, you will have to go with

import * as _ from 'lodash';

However, there are two ways to synthesize the default export:

  • Using babel
  • Using typescript with the esModuleInterop option enabled (allowSyntheticDefaultImports is required in most cases as well)

Both synthesize the default export of a module to * as <whatever> in case the source module is not an ES module and does not yet have a default export declaration.

I have to admit that I'm not sure if a description about this topic should be added here, since it is a more general issue - yet it might be helpful.

@nickmccurdy
Copy link

nickmccurdy commented Sep 1, 2018

I'm starting to feel that esModuleInterop should be in the default tsconfig template, so we can keep CRA's default generated imports and avoid confusing users new to TS.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants