React Webpack and TypeScript installation
webpack.config.js
module.exports = {
entry: './src/index',
output: {
path: __dirname + '/build',
filename: 'bundle.js'
},
module: {
rules: [{
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/
}]
},
resolve: {
extensions: ['.ts', '.tsx']
}
};
The main components are (in addition to the standard entry, output and other webpack properties):
The loader
For this you need to create a rule that tests for the .ts and .tsx file extensions, specify ts-loader as the loader.
Resolve TS extensions
You also need to add the .ts and .tsx extensions in the resolve array, or webpack won't see them.
tsconfig.json
This is a minimal tsconfig to get you up and running.
{
"include": [
"src/*"
],
"compilerOptions": {
"target": "es5",
"jsx": "react",
"allowSyntheticDefaultImports": true
}
}
Let's go through the properties one by one:
include
This is an array of source code. Here we have only one entry, src/*, which specifies that everything in the src directory is to be included in compilation.
compilerOptions.target
Specifies that we want to compile to ES5 target
compilerOptions.jsx
Setting this to true will make TypeScript automatically compile your tsx syntax from < div /> to React.createElement("div").
compilerOptions.allowSyntheticDefaultImports
Handy property which will allow you to import node modules as if they are ES6 modules, so instead of doing import * as React from 'react'
const { Component } = React
you can just do
import React, { Component } from 'react'
without any errors telling you that React has no default export.