cg-select/webpack.config.js

38 lines
742 B
JavaScript
Raw Normal View History

2023-03-31 14:51:02 +03:00
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
2023-04-05 22:05:49 +03:00
entry: './test/index.js',
2023-03-31 14:51:02 +03:00
output: {
path: path.resolve(__dirname, 'dist'),
2023-03-31 15:02:52 +03:00
filename: 'index.js',
2023-03-31 14:51:02 +03:00
clean: true,
},
2023-04-05 22:05:49 +03:00
devServer: {
open: true,
port: 5500,
},
2023-03-31 14:51:02 +03:00
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.s[ac]ss$/i,
use: ['style-loader', 'css-loader', 'sass-loader'],
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
2023-04-05 22:05:49 +03:00
plugins: [
new HtmlWebpackPlugin({
template: path.resolve(__dirname, './test/index.html'),
filename: 'index.html',
}),
],
2023-03-31 14:51:02 +03:00
};