| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- const path = require('path')
- const webpack = require('webpack')
- 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-terminal:///[resource-path]',
- },
- mode: process.env.DEV ? 'development' : 'production',
- optimization: {
- minimize: false,
- },
- resolve: {
- modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
- extensions: ['.ts', '.js'],
- },
- module: {
- rules: [
- {
- test: /\.ts$/,
- 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/*')],
- }
- },
- },
- },
- { test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
- { test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
- { test: /\.css$/, use: ['style-loader', 'css-loader'] },
- { test: /\.svg/, use: ['svg-inline-loader'] },
- {
- test: /\.(ttf|eot|otf|woff|woff2|ogg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
- use: {
- loader: 'url-loader',
- options: {
- limit: 999999999999,
- }
- }
- },
- ]
- },
- externals: [
- 'electron',
- 'fs',
- 'font-manager',
- 'path',
- 'macos-native-processlist',
- 'windows-process-tree',
- 'mz/fs',
- 'mz/child_process',
- '@terminus-term/node-pty',
- /^rxjs/,
- /^@angular/,
- /^@ng-bootstrap/,
- 'ngx-toastr',
- /^terminus-/,
- ],
- plugins: [
- new webpack.optimize.ModuleConcatenationPlugin(),
- ],
- }
|