react-ui icon indicating copy to clipboard operation
react-ui copied to clipboard

react & typescript & webpack & ES6

Open ng-work opened this issue 8 years ago • 1 comments

请问下我下载的是@types/react 用import React from “react” 引用报错 提示react/node_modules/@types/react/index"' has no default export. 这个怎么解决呢

ng-work avatar Sep 30 '17 01:09 ng-work

应该是需要在tsconfig 里面加一个allowSyntheticDefaultImports

// tsconfig.json
{
  "compilerOptions": {
    ...
    "allowSyntheticDefaultImports": true
  }
}

Lobos avatar Sep 30 '17 02:09 Lobos