28 lines
555 B
JavaScript
28 lines
555 B
JavaScript
const webpack = require("webpack");
|
|
const HtmlWebpackPlugin = require("html-webpack-plugin");
|
|
const path = require("path");
|
|
|
|
const port = process.env.PORT || 3000;
|
|
|
|
module.exports = {
|
|
mode: "development",
|
|
entry: "./src/index.tsx",
|
|
output: {
|
|
filename: "bundle.js",
|
|
path: path.resolve(__dirname, "public"),
|
|
},
|
|
devtool: "inline-source-map",
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: "ts-loader",
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: [".tsx", ".ts", ".js"],
|
|
},
|
|
};
|