1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-24 06:04:04 +03:00
tabby/terminus-terminal/webpack.config.js

64 lines
1.6 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,
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,
libraryTarget: 'umd',
2017-04-11 23:45:59 +03:00
devtoolModuleFilenameTemplate: 'webpack-terminus-terminal:///[resource-path]',
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: {
loaders: [
2017-04-12 13:12:57 +03:00
{
test: /\.ts$/,
loader: 'awesome-typescript-loader',
query: {
2017-04-15 16:20:18 +03:00
configFileName: path.resolve(__dirname, 'tsconfig.json'),
2017-06-24 17:00:38 +03:00
typeRoots: [path.resolve(__dirname, 'node_modules/@types')],
2017-04-12 13:12:57 +03:00
paths: {
"terminus-*": [path.resolve(__dirname, '../terminus-*')],
"*": [path.resolve(__dirname, '../app/node_modules/*')],
}
}
},
2017-04-11 03:22:48 +03:00
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
2017-04-11 23:45:59 +03:00
{ test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
2017-04-17 15:57:22 +03:00
{ test: /\.css$/, use: ['to-string-loader', 'css-loader'] },
{
2017-07-23 21:55:41 +03:00
test: /\.(ttf|eot|otf|woff|woff2|ogg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
loader: "url-loader",
options: {
limit: 999999999999,
}
},
2017-04-11 03:22:48 +03:00
]
},
2017-04-11 23:45:59 +03:00
externals: [
2017-07-24 15:48:16 +03:00
'electron',
2017-04-11 23:45:59 +03:00
'fs',
'font-manager',
'path',
'node-pty',
2017-07-05 15:48:02 +03:00
'mz/fs',
2017-04-24 22:26:59 +03:00
'mz/child_process',
2017-04-17 18:27:04 +03:00
'winreg',
2017-04-11 23:45:59 +03:00
/^rxjs/,
/^@angular/,
/^@ng-bootstrap/,
/^terminus-/,
2017-06-21 00:28:58 +03:00
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
2017-04-11 03:22:48 +03:00
}