超初心者の漠然とした質問で申し訳ありませんが、できますか
import {Component} from 'react'
class MyComponent extends Component { ..
それよりも
import * as React from 'react`
class MyComponent extends React.Component { ..
babel/webpack/typescript/react っぽい環境で?
そうでない場合、それはなぜですか?
私の webpack.config.json は次のようになっています。
module: {
rules: [
{
test: /\.js$/,
use: ['babel-loader', 'source-map-loader'],
exclude: /node_modules/
},
{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'happypack/loader?id=ts'
},
...
plugins: [
new HappyPack({
id: 'ts',
threads: 2,
loaders: [
{
path: 'ts-loader',
query: { happyPackMode: true }
}
]
}),
...