```ts import React from "react" ~~~~~ // .../node_modules/@types/react/index"' can only be default-imported using the 'allowSyntheticDefaultImports' flag ``` Importing `react-async` from non-`allowSyntheticDefaultImports`-enabled project, the included typescript definition emits above error message. Since **the default value of the flag is not true**, it'd be better turning it off I think. https://github.com/Microsoft/TypeScript/issues/10895