自分用メモ。 まず、tsconfig.jsonから。 tsconfig.json { "compilerOptions": { "target": "es5", "module": "commonjs", "removeComments": true, "sourceMap": true, "jsx": "react" }, "exclude": [ "node_modules" ] } とりあえず、node_modulesを除いたファイルを対象にしておけばだいたいOK。 次に、webpack.config.jsです。 webpack.config.js var path = require('path'); var webpack = require('webpack'); module.exports = { entry: { app: './react/app.tsx' }, out