tabby/tabby-terminal/webpack.config.js

16 lines
369 B
JavaScript
Raw Normal View History

2021-02-13 11:11:38 +00:00
const config = require('../webpack.plugin.config')
module.exports = config({
name: 'terminal',
dirname: __dirname,
2021-04-08 20:26:47 +00:00
externals: [
'opentype.js',
],
2022-05-27 11:34:18 +00:00
rules: [
{
test: /lib[\\/]xterm-addon-image-worker.js$/i,
type: 'asset/source',
},
],
2021-02-13 11:11:38 +00:00
})
module.exports.resolve.modules.push('node_modules/xterm/src')