xterm.js/webpack.config.headless.js
2025-11-23 09:01:24 -08:00

50 lines
1.3 KiB
JavaScript

/**
* Copyright (c) 2019 The xterm.js authors. All rights reserved.
* @license MIT
*/
const path = require('path');
/**
* This webpack config does a production build for xterm.js headless. It works by taking the output
* from tsc (via `npm run watch` or `npm run prebuild`) which are put into `out/` and webpacks them
* into a production mode umd library module in `lib-headless/`. The aliases are used fix up the
* absolute paths output by tsc (because of `baseUrl` and `paths` in `tsconfig.json`.
*
* @type {import('webpack').Configuration}
*/
const config = {
entry: './out/headless/public/Terminal.js',
devtool: 'source-map',
module: {
rules: [
{
test: /\.js$/,
use: ["source-map-loader"],
enforce: "pre",
exclude: /node_modules/
}
]
},
resolve: {
modules: ['./node_modules'],
extensions: [ '.js' ],
alias: {
common: path.resolve('./out/common'),
headless: path.resolve('./out/headless'),
vs: path.resolve('./out/vs')
}
},
output: {
filename: 'xterm-headless.js',
path: path.resolve('./headless/lib-headless'),
library: {
type: 'commonjs'
},
// Force usage of globalThis instead of global / self. (This is cross-env compatible)
globalObject: 'globalThis',
},
mode: 'production',
};
module.exports = config;