90 lines
2.0 KiB
JavaScript
90 lines
2.0 KiB
JavaScript
const path = require('path');
|
|
const webpack = require('webpack');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
|
|
const WebpackFavicons = require('webpack-favicons');
|
|
const Dotenv = require('dotenv-webpack');
|
|
|
|
module.exports = {
|
|
entry: './src/index.tsx',
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
{
|
|
test: /\.mdx?$/,
|
|
use: ['babel-loader', './webpack/plugins/mdx-loader'],
|
|
},
|
|
{
|
|
test: /\.css$/i,
|
|
use: ['style-loader', 'css-loader'],
|
|
},
|
|
{
|
|
test: /\.(png|jpe?g|gif|svg|eot|ttf|woff|woff2|md)$/i,
|
|
// More information here https://webpack.js.org/guides/asset-modules/
|
|
type: 'asset',
|
|
},
|
|
{
|
|
test: /\.ya?ml$/,
|
|
type: 'json',
|
|
use: 'yaml-loader',
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: ['.tsx', '.ts', '.js'],
|
|
plugins: [new TsconfigPathsPlugin()],
|
|
alias: {
|
|
'react/jsx-runtime': require.resolve('react/jsx-runtime'),
|
|
},
|
|
fallback: {
|
|
fs: false,
|
|
tls: false,
|
|
path: false,
|
|
http: false,
|
|
https: false,
|
|
stream: false,
|
|
crypto: false,
|
|
net: false,
|
|
zlib: false,
|
|
},
|
|
},
|
|
plugins: [
|
|
new webpack.ProvidePlugin({
|
|
Buffer: ['buffer', 'Buffer'],
|
|
}),
|
|
|
|
new CleanWebpackPlugin(),
|
|
|
|
new HtmlWebpackPlugin({
|
|
filename: 'index.html',
|
|
template: path.resolve(__dirname, 'src/index.html'),
|
|
}),
|
|
|
|
new ForkTsCheckerWebpackPlugin({
|
|
typescript: {
|
|
mode: 'write-references',
|
|
diagnosticOptions: {
|
|
semantic: true,
|
|
syntactic: true,
|
|
},
|
|
},
|
|
}),
|
|
|
|
new WebpackFavicons({
|
|
src: 'src/logo.svg',
|
|
}),
|
|
|
|
new Dotenv(),
|
|
],
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
publicPath: '/',
|
|
},
|
|
};
|