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

Commit dc4e448

Browse files
committed
add undefined import tip to guide
Add troubleshooting tip for importing the default export in TypeScript. Easy mistake to make when migrating from JavaScript.
1 parent e4b1f94 commit dc4e448

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

packages/react-scripts/template/README.md

+15
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ You can find the most recent version of this guide [here](https://github.com/fac
100100
- [`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku)
101101
- [`npm run build` fails to minify](#npm-run-build-fails-to-minify)
102102
- [Moment.js locales are missing](#momentjs-locales-are-missing)
103+
- [TypeError: Cannot read property _foo_ on undefined](#typeerror-cannot-read-property-foo-on-undefined)
103104
- [Alternatives to Ejecting](#alternatives-to-ejecting)
104105
- [Something Missing?](#something-missing)
105106

@@ -2439,6 +2440,20 @@ To resolve this:
24392440
24402441
In the future, we might start automatically compiling incompatible third-party modules, but it is not currently supported. This approach would also slow down the production builds.
24412442
2443+
### TypeError: Cannot read property _foo_ on undefined
2444+
2445+
When importing a module, you might need to use
2446+
2447+
```typescript
2448+
import * as foo from 'foo';
2449+
```
2450+
2451+
instead of
2452+
2453+
```typescript
2454+
import foo from 'foo';
2455+
```
2456+
24422457
## Alternatives to Ejecting
24432458
24442459
[Ejecting](#npm-run-eject) lets you customize anything, but from that point on you have to maintain the configuration and scripts yourself. This can be daunting if you have many similar projects. In such cases instead of ejecting we recommend to *fork* `react-scripts` and any other packages you need. [This article](https://auth0.com/blog/how-to-configure-create-react-app/) dives into how to do it in depth. You can find more discussion in [this issue](https://github.com/facebookincubator/create-react-app/issues/682).

0 commit comments

Comments
 (0)