tabby/terminus-ssh/webpack.config.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

const path = require('path')
module.exports = {
target: 'node',
entry: 'src/index.ts',
devtool: 'source-map',
context: __dirname,
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
pathinfo: true,
libraryTarget: 'umd',
devtoolModuleFilenameTemplate: 'webpack-terminus-ssh:///[resource-path]',
},
2018-08-26 11:15:00 +00:00
mode: process.env.DEV ? 'development' : 'production',
2018-10-11 22:17:02 +00:00
optimization:{
minimize: false,
},
resolve: {
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
extensions: ['.ts', '.js'],
},
module: {
2018-05-20 14:12:05 +00:00
rules: [
{
test: /\.ts$/,
2018-05-20 14:12:05 +00:00
use: {
loader: 'awesome-typescript-loader',
options: {
configFileName: path.resolve(__dirname, 'tsconfig.json'),
typeRoots: [path.resolve(__dirname, 'node_modules/@types')],
paths: {
"terminus-*": [path.resolve(__dirname, '../terminus-*')],
"*": [path.resolve(__dirname, '../app/node_modules/*')],
}
}
}
},
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
{ test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
2018-08-09 13:13:31 +00:00
{ test: /\.svg/, use: ['svg-inline-loader'] },
]
},
externals: [
'fs',
'node-ssh',
'ssh2-streams',
'xkeychain',
2017-11-27 16:29:45 +00:00
'wincredmgr',
2017-12-07 19:47:25 +00:00
'path',
2018-01-19 14:31:28 +00:00
'ngx-toastr',
'windows-process-tree/build/Release/windows_process_tree.node',
/^rxjs/,
/^@angular/,
/^@ng-bootstrap/,
/^terminus-/,
]
}