react-ui
react-ui copied to clipboard
react & typescript & webpack & ES6
请问下我下载的是@types/react 用import React from “react” 引用报错 提示react/node_modules/@types/react/index"' has no default export. 这个怎么解决呢
应该是需要在tsconfig 里面加一个allowSyntheticDefaultImports
// tsconfig.json
{
"compilerOptions": {
...
"allowSyntheticDefaultImports": true
}
}