1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-28 05:36:31 +03:00
tabby/terminus-core/webpack.config.js

66 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-04-12 13:12:57 +03:00
const path = require('path')
2017-06-21 00:28:58 +03:00
const webpack = require('webpack')
2017-04-12 13:12:57 +03:00
2017-04-11 03:22:48 +03:00
module.exports = {
target: 'node',
2017-04-11 23:45:59 +03:00
entry: 'src/index.ts',
2017-04-11 03:22:48 +03:00
devtool: 'source-map',
2017-04-12 13:12:57 +03:00
context: __dirname,
2018-05-20 17:12:05 +03:00
mode: 'development',
2017-04-11 03:22:48 +03:00
output: {
2017-04-12 13:12:57 +03:00
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
2017-04-11 03:22:48 +03:00
pathinfo: true,
2017-04-11 23:45:59 +03:00
libraryTarget: 'umd',
devtoolModuleFilenameTemplate: 'webpack-terminus-core:///[resource-path]',
2017-04-11 03:22:48 +03:00
},
2018-08-26 14:15:00 +03:00
mode: process.env.DEV ? 'development' : 'production',
2018-10-12 01:17:02 +03:00
optimization:{
minimize: false,
},
2017-04-11 03:22:48 +03:00
resolve: {
2017-04-12 13:12:57 +03:00
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
2017-04-11 03:22:48 +03:00
extensions: ['.ts', '.js'],
},
module: {
2018-05-20 17:12:05 +03:00
rules: [
2017-04-12 13:12:57 +03:00
{
test: /\.ts$/,
2018-05-20 17:12:05 +03: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/*')],
}
2017-04-12 13:12:57 +03:00
}
}
},
2017-04-11 03:22:48 +03:00
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
2017-04-14 19:29:49 +03:00
{ test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
2017-04-16 21:06:29 +03:00
{ test: /\.css$/, use: ['to-string-loader', 'css-loader'], include: /component\.css/ },
{ test: /\.css$/, use: ['style-loader', 'css-loader'], exclude: /component\.css/ },
2017-04-11 03:22:48 +03:00
{ test: /\.yaml$/, use: ['json-loader', 'yaml-loader'] },
2018-08-09 16:13:31 +03:00
{ test: /\.svg/, use: ['svg-inline-loader'] },
2017-04-11 03:22:48 +03:00
]
},
2017-04-11 23:45:59 +03:00
externals: [
'electron',
'fs',
'os',
'path',
'deepmerge',
'untildify',
2017-10-23 23:58:19 +03:00
'winston',
2017-04-11 23:45:59 +03:00
'js-yaml',
/^rxjs/,
/^@angular/,
/^@ng-bootstrap/,
2017-06-21 00:28:58 +03:00
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
2017-04-11 03:22:48 +03:00
}