Lobos / react-ui

A collection of components for React, base on bootstrap 4.0.
http://lobos.github.io/react-ui/
MIT License
1.63k stars 302 forks source link

react & typescript & webpack & ES6 #106

Open ng-work opened 7 years ago

ng-work commented 7 years ago

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

Lobos commented 7 years ago

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

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