mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
61 lines
1.4 KiB
JavaScript
61 lines
1.4 KiB
JavaScript
const path = require('path');
|
|
const HtmlWebPackPlugin = require('html-webpack-plugin');
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
const mode = process.env.NODE_ENV === 'production' ? 'production' : 'development';
|
|
module.exports = {
|
|
mode,
|
|
entry: {
|
|
app: path.join(__dirname, 'index.tsx'),
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js', '.tsx', '.jsx']
|
|
},
|
|
devtool: mode === 'production' ? false : 'source-map',
|
|
output: {
|
|
globalObject: 'self',
|
|
filename: '[name].bundle.js',
|
|
path: path.resolve(__dirname, '../../../lib/webpack/traceViewer')
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(j|t)sx?$/,
|
|
loader: 'babel-loader',
|
|
options: {
|
|
presets: [
|
|
"@babel/preset-typescript",
|
|
"@babel/preset-react"
|
|
]
|
|
},
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: ['style-loader', 'css-loader']
|
|
},
|
|
]
|
|
},
|
|
plugins: [
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{
|
|
from: path.resolve(__dirname, '../../../../../node_modules/@zip.js/zip.js/dist/zip-no-worker-inflate.min.js'),
|
|
to: 'zip.min.js'
|
|
},
|
|
],
|
|
}),
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{
|
|
from: path.resolve(__dirname, 'static'),
|
|
},
|
|
],
|
|
}),
|
|
new HtmlWebPackPlugin({
|
|
title: 'Playwright Trace Viewer',
|
|
template: path.join(__dirname, 'index.html'),
|
|
})
|
|
]
|
|
};
|