mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 23:14:32 +03:00
73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
const path = require('path')
|
|
|
|
const externals = {}
|
|
for (const key of [
|
|
'child_process',
|
|
'crypto',
|
|
'dns',
|
|
'fs',
|
|
'http',
|
|
'https',
|
|
'net',
|
|
'path',
|
|
'querystring',
|
|
'tls',
|
|
'tty',
|
|
'zlib',
|
|
'../build/Release/cpufeatures.node',
|
|
'./crypto/build/Release/sshcrypto.node',
|
|
]) {
|
|
externals[key] = `commonjs ${key}`
|
|
}
|
|
|
|
module.exports = {
|
|
name: 'tabby-web-entry',
|
|
target: 'web',
|
|
entry: {
|
|
preload: path.resolve(__dirname, 'entry.preload.ts'),
|
|
bundle: path.resolve(__dirname, 'entry.ts'),
|
|
},
|
|
mode: process.env.TABBY_DEV ? 'development' : 'production',
|
|
optimization:{
|
|
minimize: false,
|
|
},
|
|
context: __dirname,
|
|
devtool: 'source-map',
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
pathinfo: true,
|
|
filename: '[name].js',
|
|
publicPath: 'auto',
|
|
},
|
|
resolve: {
|
|
modules: ['../app/node_modules', 'node_modules', '../node_modules', '../app/assets/'].map(x => path.join(__dirname, x)),
|
|
extensions: ['.ts', '.js'],
|
|
fallback: {
|
|
stream: require.resolve('stream-browserify'),
|
|
assert: require.resolve('assert/'),
|
|
constants: require.resolve('constants-browserify'),
|
|
util: require.resolve('util/'),
|
|
},
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ts$/,
|
|
use: {
|
|
loader: 'ts-loader',
|
|
options: {
|
|
configFile: path.resolve(__dirname, 'tsconfig.json'),
|
|
},
|
|
},
|
|
},
|
|
{ test: /\.scss$/, use: ['style-loader', 'css-loader', 'sass-loader'] },
|
|
{ test: /\.css$/, use: ['style-loader', 'css-loader', 'sass-loader'] },
|
|
{
|
|
test: /\.(png|svg|ttf|eot|otf|woff|woff2)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
|
|
type: 'asset',
|
|
},
|
|
],
|
|
},
|
|
externals,
|
|
}
|