Trying to convert a React app over into Typescript and running into strange errors.
node_modules/@types/react/index”‘ has no default export.
node_modules/@types/react-dom/index”‘ has no default export.
I have my tsconfig and webpack setup for typescript. After changing this one component’s extension from .js
to .tsx
I’m getting errors for React?
Thoughts?
tsconfig.json
JavaScript
x
14
14
1
{
2
"compilerOptions": {
3
"outDir": "./moonholdings/",
4
"sourceMap": true,
5
"noImplicitAny": true,
6
"module": "commonjs",
7
"target": "es5",
8
"jsx": "react"
9
},
10
"include": [
11
"./app/**/*"
12
]
13
}
14
webpack
JavaScript
1
114
114
1
/* eslint-disable no-console */
2
import webpack from 'webpack';
3
import HtmlWebpackPlugin from 'html-webpack-plugin';
4
import ExtractTextPlugin from 'extract-text-webpack-plugin';
5
import CopyWebpackPlugin from 'copy-webpack-plugin';
6
import path from 'path';
7
import chalk from 'chalk';
8
9
const moonholdings = path.resolve(__dirname, 'moonholdings');
10
const app = path.resolve(__dirname, 'app');
11
const nodeModules = path.resolve(__dirname, 'node_modules');
12
13
const HtmlWebpackPluginConfig = new HtmlWebpackPlugin({
14
template: path.join(__dirname, '/app/index.html'),
15
inject: 'body'
16
});
17
18
const ExtractTextPluginConfig = new ExtractTextPlugin({
19
filename: 'moonholdings.css',
20
disable: false,
21
allChunks: true
22
});
23
24
const CopyWebpackPluginConfigOptions = [{
25
from: 'app/static',
26
to: 'static/'
27
}];
28
29
const CopyWebpackPluginConfig = new CopyWebpackPlugin(CopyWebpackPluginConfigOptions);
30
31
const PATHS = {
32
app,
33
build: moonholdings
34
};
35
36
const LAUNCH_COMMAND = process.env.npm_lifecycle_event;
37
38
const isProduction = LAUNCH_COMMAND === 'production';
39
process.env.BABEL_ENV = LAUNCH_COMMAND;
40
41
const productionPlugin = new webpack.DefinePlugin({
42
'process.env': {
43
NODE_ENV: JSON.stringify('production')
44
}
45
});
46
47
const base = {
48
// entry: ['babel-polyfill', PATHS.app],
49
entry: './app/index.tsx',
50
output: {
51
path: PATHS.build,
52
publicPath: '/',
53
filename: 'index_bundle.js'
54
},
55
resolve: {
56
modules: [app, nodeModules],
57
extensions: ['.ts', '.tsx', '.js', '.json']
58
},
59
module: {
60
rules: [
61
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
62
{ test: /.tsx?$/, loader: 'awesome-typescript-loader' },
63
{
64
test: /.js$/,
65
loader: 'babel-loader',
66
exclude: /node_modules/
67
},
68
{
69
test: /.s?css/,
70
use: [
71
'style-loader',
72
'css-loader',
73
'sass-loader'
74
]
75
},
76
{
77
test: /.(png|jpg|jpeg|gif|svg|woff|woff2|ttf|eot)/,
78
loader: 'file-loader?name=[path][name].[ext]'
79
},
80
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
81
{ enforce: 'pre', test: /.js$/, loader: 'source-map-loader' }
82
]
83
}
84
};
85
86
const developmentConfig = {
87
devtool: 'cheap-module-inline-source-map',
88
devServer: {
89
contentBase: moonholdings
90
},
91
plugins: [
92
CopyWebpackPluginConfig,
93
ExtractTextPluginConfig,
94
HtmlWebpackPluginConfig
95
]
96
};
97
98
const productionConfig = {
99
devtool: 'cheap-module-source-map',
100
plugins: [
101
CopyWebpackPluginConfig,
102
ExtractTextPluginConfig,
103
HtmlWebpackPluginConfig,
104
productionPlugin
105
]
106
};
107
108
console.log(`${chalk.magenta('฿')} ${chalk.green('yarn run:')} ${chalk.red(LAUNCH_COMMAND)}`);
109
110
export default Object.assign(
111
{}, base,
112
isProduction === true ? productionConfig : developmentConfig
113
);
114
Advertisement
Answer
You have to use import * as React from "react";
instead of import React from 'react'
.
That happens because babel (the one that you were using before) assumes modules.export as default export while typescript (the one that you are using now) does not.