29 lines
625 B
JavaScript
29 lines
625 B
JavaScript
import * as path from 'path';
|
|
import * as HtmlWebpackPlugin from 'html-webpack-plugin';
|
|
|
|
module.exports = {
|
|
entry: './src/index.tsx',
|
|
mode: 'development',
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: ['.tsx', '.ts', '.js'],
|
|
},
|
|
output: {
|
|
filename: 'bundle.js',
|
|
path: path.resolve(__dirname, 'dist'),
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
template: './src/index.html',
|
|
}),
|
|
],
|
|
};
|