redux-devtools/packages/react-dock/webpack.config.ts
Nathan Bierema 78ded9e0ca
feat(react-dock): convert to TypeScript (#607)
* feature(react-dock): convert to TypeScript

* And that

* Fun

* pretty

* More fun

* Try that
2020-08-24 00:37:43 -04:00

50 lines
1.1 KiB
TypeScript

import * as path from 'path';
import * as webpack from 'webpack';
const isProduction = process.env.NODE_ENV === 'production';
module.exports = {
mode: isProduction ? 'production' : 'development',
devtool: 'eval',
entry: isProduction
? ['./demo/src/index']
: [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
'./demo/src/index',
],
output: {
path: path.join(__dirname, 'demo/static'),
filename: 'bundle.js',
publicPath: isProduction ? 'static/' : '/static/',
},
plugins: isProduction ? [] : [new webpack.HotModuleReplacementPlugin()],
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
module: {
rules: [
{
test: /\.(js|ts)x?$/,
loader: 'babel-loader',
include: [
path.join(__dirname, 'src'),
path.join(__dirname, 'demo/src'),
],
},
],
},
devServer: isProduction
? null
: {
publicPath: '/static/',
port: 3000,
contentBase: './demo/',
hot: true,
stats: {
colors: true,
},
historyApiFallback: true,
},
};