multi-downloader-nx_mirror/gui/react/webpack.config.ts

61 lines
1.1 KiB
TypeScript

import type { Configuration } from 'webpack';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import path from 'path';
import type { Configuration as DevServerConfig } from 'webpack-dev-server';
const config: Configuration & DevServerConfig = {
devServer: {
proxy: [
{
target: 'http://localhost:3000',
context: ['/public', '/private'],
ws: true
}
]
},
entry: './src/index.tsx',
mode: 'production',
output: {
path: path.resolve(process.cwd(), './build'),
filename: 'index.js'
},
target: 'web',
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json']
},
performance: false,
module: {
rules: [
{
test: /\.(ts|tsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
'@babel/typescript',
'@babel/preset-react',
[
'@babel/preset-env',
{
targets: 'defaults'
}
]
]
}
}
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader']
}
]
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(process.cwd(), 'public', 'index.html')
})
]
};
export default config;