| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- const path = require('path')
- const webpack = require('webpack')
- module.exports = {
- name: 'terminus-main',
- target: 'node',
- entry: {
- main: path.resolve(__dirname, 'lib/index.ts'),
- },
- mode: process.env.TERMINUS_DEV ? 'development' : 'production',
- context: __dirname,
- devtool: 'source-map',
- output: {
- path: path.join(__dirname, 'dist'),
- pathinfo: true,
- filename: '[name].js',
- },
- resolve: {
- modules: ['lib/', 'node_modules', '../node_modules'].map(x => path.join(__dirname, x)),
- extensions: ['.ts', '.js'],
- },
- module: {
- rules: [
- {
- test: /\.ts$/,
- use: {
- loader: 'awesome-typescript-loader',
- options: {
- configFileName: path.resolve(__dirname, 'tsconfig.main.json'),
- },
- },
- },
- ],
- },
- externals: {
- electron: 'commonjs electron',
- 'electron-config': 'commonjs electron-config',
- 'electron-promise-ipc': 'commonjs electron-promise-ipc',
- 'electron-vibrancy': 'commonjs electron-vibrancy',
- fs: 'commonjs fs',
- glasstron: 'commonjs glasstron',
- mz: 'commonjs mz',
- npm: 'commonjs npm',
- 'node-pty': 'commonjs node-pty',
- path: 'commonjs path',
- util: 'commonjs util',
- 'source-map-support': 'commonjs source-map-support',
- 'windows-swca': 'commonjs windows-swca',
- 'windows-blurbehind': 'commonjs windows-blurbehind',
- },
- plugins: [
- new webpack.optimize.ModuleConcatenationPlugin(),
- new webpack.DefinePlugin({
- 'process.type': '"main"',
- }),
- ],
- // Ignore warnings due to yarg's dynamic module loading
- ignoreWarnings: [/node_modules\/yargs/],
- }
|