tabby/terminus-terminal/webpack.config.js

77 lines
2 KiB
JavaScript
Raw Normal View History

2017-04-12 10:12:57 +00:00
const path = require('path')
2017-06-20 21:28:58 +00:00
const webpack = require('webpack')
2017-04-12 10:12:57 +00:00
2017-04-11 00:22:48 +00:00
module.exports = {
target: 'node',
2017-04-11 20:45:59 +00:00
entry: 'src/index.ts',
2019-04-28 09:42:34 +00:00
devtool: 'eval-source-map',
2017-04-12 10:12:57 +00:00
context: __dirname,
2017-04-11 00:22:48 +00:00
output: {
2017-04-12 10:12:57 +00:00
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
2017-04-11 00:22:48 +00:00
pathinfo: true,
libraryTarget: 'umd',
2017-04-11 20:45:59 +00:00
devtoolModuleFilenameTemplate: 'webpack-terminus-terminal:///[resource-path]',
2017-04-11 00:22:48 +00:00
},
2019-02-09 21:10:42 +00:00
mode: process.env.TERMINUS_DEV ? 'development' : 'production',
2018-10-12 14:55:55 +00:00
optimization: {
minimize: false,
2018-10-11 22:17:02 +00:00
},
2017-04-11 00:22:48 +00:00
resolve: {
2017-04-12 10:12:57 +00:00
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
2017-04-11 00:22:48 +00:00
extensions: ['.ts', '.js'],
},
module: {
2018-05-20 14:12:05 +00:00
rules: [
2017-04-12 10:12:57 +00:00
{
test: /\.ts$/,
2018-05-20 14:12:05 +00:00
use: {
loader: 'awesome-typescript-loader',
query: {
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/*')],
}
},
},
2017-04-12 10:12:57 +00:00
},
2017-04-11 00:22:48 +00:00
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
2017-04-11 20:45:59 +00:00
{ test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
2018-08-26 11:15:00 +00:00
{ test: /\.css$/, use: ['style-loader', 'css-loader'] },
2018-08-09 13:13:31 +00:00
{ test: /\.svg/, use: ['svg-inline-loader'] },
{
2017-07-23 18:55:41 +00:00
test: /\.(ttf|eot|otf|woff|woff2|ogg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
2018-05-20 14:12:05 +00:00
use: {
loader: 'url-loader',
options: {
limit: 999999999999,
}
}
},
2017-04-11 00:22:48 +00:00
]
},
2017-04-11 20:45:59 +00:00
externals: [
2017-07-24 12:48:16 +00:00
'electron',
2017-04-11 20:45:59 +00:00
'fs',
'font-manager',
'path',
2018-10-23 09:56:44 +00:00
'macos-native-processlist',
2018-10-27 11:25:51 +00:00
'windows-process-tree',
2019-03-02 14:56:58 +00:00
'windows-native-registry',
2017-07-05 12:48:02 +00:00
'mz/fs',
2017-04-24 19:26:59 +00:00
'mz/child_process',
2019-03-08 12:11:01 +00:00
'@terminus-term/node-pty',
2019-02-20 00:07:05 +00:00
'os',
2017-04-11 20:45:59 +00:00
/^rxjs/,
/^@angular/,
/^@ng-bootstrap/,
2018-03-30 21:24:34 +00:00
'ngx-toastr',
2017-04-11 20:45:59 +00:00
/^terminus-/,
2017-06-20 21:28:58 +00:00
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
2017-04-11 00:22:48 +00:00
}