1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mirrors-xterm.js

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
webpack.config.headless.js 1.3 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Daniel Imms Отправлено 14.07.2024 18:34 10b97f4
/**
* 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 `yarn watch` or `yarn 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;

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mirrors-xterm.js.git
git@api.gitlife.ru:oschina-mirror/mirrors-xterm.js.git
oschina-mirror
mirrors-xterm.js
mirrors-xterm.js
master