tabby/terminus-plugin-manager/webpack.config.js

55 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-04-14 19:53:19 +00:00
const path = require('path')
2017-06-20 21:28:58 +00:00
const webpack = require('webpack')
2017-04-14 19:53:19 +00:00
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',
2017-06-01 20:23:36 +00:00
devtoolModuleFilenameTemplate: 'webpack-terminus-plugin-manager:///[resource-path]',
2017-04-14 19:53:19 +00:00
},
resolve: {
modules: ['.', 'src', 'node_modules', '../app/node_modules'].map(x => path.join(__dirname, x)),
extensions: ['.ts', '.js'],
},
module: {
loaders: [
{
test: /\.ts$/,
loader: 'awesome-typescript-loader',
2017-06-01 20:23:36 +00:00
query: {
2017-04-15 13:20:18 +00:00
configFileName: path.resolve(__dirname, 'tsconfig.json'),
2017-06-24 14:00:38 +00:00
typeRoots: [path.resolve(__dirname, 'node_modules/@types')],
2017-04-14 19:53:19 +00:00
paths: {
"terminus-*": [path.resolve(__dirname, '../terminus-*')],
"*": [path.resolve(__dirname, '../app/node_modules/*')],
}
}
},
2017-06-01 20:23:36 +00:00
{ test: /\.pug$/, use: ['apply-loader', 'pug-loader'] },
2017-04-14 19:53:19 +00:00
{ test: /\.scss$/, use: ['to-string-loader', 'css-loader', 'sass-loader'] },
]
},
externals: [
2017-06-01 20:23:36 +00:00
'fs',
'fs-promise',
'font-manager',
'path',
'node-pty',
'mz/child_process',
'winreg',
/^rxjs/,
2017-04-14 19:53:19 +00:00
/^@angular/,
/^@ng-bootstrap/,
/^terminus-/,
2017-06-20 21:28:58 +00:00
],
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
],
2017-04-14 19:53:19 +00:00
}