40 lines
940 B
JavaScript
40 lines
940 B
JavaScript
|
const path = require('path');
|
||
|
const CopyPlugin = require('copy-webpack-plugin');
|
||
|
|
||
|
module.exports = {
|
||
|
mode: 'development',
|
||
|
entry: './src/main.ts',
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.tsx?$/,
|
||
|
use: 'ts-loader',
|
||
|
exclude: /node_modules/,
|
||
|
},
|
||
|
{
|
||
|
test: /\.html$/i,
|
||
|
type: 'asset/resource',
|
||
|
},
|
||
|
{
|
||
|
test: /\.css$/i,
|
||
|
use: ['style-loader', 'css-loader'],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
resolve: {
|
||
|
extensions: ['.tsx', '.ts', '.js'],
|
||
|
},
|
||
|
plugins: [
|
||
|
new CopyPlugin({
|
||
|
patterns: [
|
||
|
{ from: "index.html", to: "index.html" },
|
||
|
{ from: "styles.css", to: "styles.css" },
|
||
|
],
|
||
|
}),
|
||
|
],
|
||
|
output: {
|
||
|
filename: 'bundle.js',
|
||
|
path: path.resolve(__dirname, 'dist'),
|
||
|
},
|
||
|
};
|